报错信息
_jquery2.default.ajax({
^
TypeError: _jquery2.default.ajax is not a function
如果输出jquery时存在的. 本身应用程序运行也是正常的.只是mocha时会报上面的的错误.
感谢回复.
报错信息
_jquery2.default.ajax({
^
TypeError: _jquery2.default.ajax is not a function
如果输出jquery时存在的. 本身应用程序运行也是正常的.只是mocha时会报上面的的错误.
感谢回复.
你用 node --debug-brk 调试下 mocha跑的用例吧。我记得好像要引入依赖的外部库。
我没用mocha做过浏览器端的测试,翻了下官方文档,你试试看下面的写法 mocha.globals(['jQuery']);
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
</head>
<body>
<div id="mocha"></div>
<script src="https://cdn.rawgit.com/jquery/jquery/2.1.4/dist/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/Automattic/expect.js/0.3.1/index.js"></script>
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/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>
你需要安装一个
mocha-phantomjs
,用mocha
在命令行中,他没有 window document 等对象...,所以你安装mocha-phantomjs
相当有一个没有界面的浏览器,浏览器相关对象你都可以获取赋值.....你可以看我这里面怎么写测试用例的https://github.com/JSLite/JSLite