gpt4 book ai didi

javascript - 如何使用 MochaJS 测试 jQuery 代码?

转载 作者:行者123 更新时间:2023-12-01 01:44:56 26 4
gpt4 key购买 nike

我认为,mocha 在我的测试范围内无法识别 jQuery,因为它测试纯 JavaScript 没有问题。我试图在我的测试中在 .js 文件的开头要求 jQuery 的完整代码,尝试手动定义 $before(function() {/* some code */}),但是当我尝试运行测试并且存在时,我总是收到此 ReferenceError: $ is not Defined jQuery 代码使用其中一些进行了测试。

有什么办法可以解决这个问题吗?

最佳答案

在文档中:

Mocha runs in the browser. Every release of Mocha will have new builds of ./mocha.js and ./mocha.css for use in the browser. To setup Mocha for browser use all you have to do is include the script, stylesheet, tell Mocha which interface you wish to use, and then run the tests. A typical setup might look something like the following, where we call mocha.setup('bdd') to use the BDD interface before loading the test scripts, running them onload with mocha.run().

因此您可以包含任何脚本,但首先包含库,例如 jQuery,然后进行测试

<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="jquery.js"></script>
<script src="expect.js"></script>
<script src="mocha.js"></script>
<script>mocha.setup('bdd')</script>
<script src="test.array.js"></script>
<script src="test.object.js"></script>
<script src="test.xhr.js"></script>
<script>
mocha.checkLeaks();
mocha.globals(['jQuery']);
mocha.run();
</script>
</body>
</html>

关于javascript - 如何使用 MochaJS 测试 jQuery 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28760568/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com