2

我正在使用本机运行良好的 QUnit+Sinon.js。当我尝试将其构建到持续集成过程中时,出现了问题。我正在使用 js-test-driver 框架,以便能够在持续集成环境中运行它。过去我在没有 Sinon.js 的情况下使用它,这没有任何问题。但是在我包含了 Sinon.js 插件之后,它就完全不起作用了。当我尝试运行测试时,它说:

D:/my/project/url/contentTest.js:60: TypeError: qTest is not a function
Total 0 tests (Passed: 0 Fails: 0 Errors: 0)(0.00 ms)

我的 js-test-driver 配置:

server: http://localhost:9879

load:  
  # QUnit related files
  - qunit/lib/equiv.js
  - qunit/lib/QUnitAdapter.js
  - qunit/plugin/sinon-1.6.0.js
  - qunit/plugin/sinon-qunit-1.0.0.js

  # Dependencies
  - external/jquery/1.7.2/jquery.min.js

  # Files under test
  - content.js

  # Tests
  - contentTest.js

有趣的是,有一个运行良好的 QUnit index.html 文件(当我打开这个 html 时,每个测试都通过了):

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>my tests</title>
  <link rel="stylesheet" href="./qunit/lib/qunit-1.11.0.css">
</head>
<body>
  <div id="qunit"></div>
  <div id="qunit-fixture"></div>

  <!-- core -->
  <script src="./qunit/lib/qunit-1.11.0.js"></script>
  <script src="./qunit/plugin/sinon-1.6.0.js"></script>
  <script src="./qunit/plugin/sinon-qunit-1.0.0.js"></script>

  <!-- dependencies -->  
  <script src="./external/jquery/1.7.2/jquery.min.js"></script>

  <!-- under test  -->
  <script src="./content.js"></script>

  <!-- tests -->
  <script src="./contentTest.js"></script>
</body>
</html>

所以看起来和js-test-driver和Sinon.js有冲突。如果我删除所有相关的 Sinon.js 测试和包含的 sinon 插件,那么它可以工作。如果我只是删除与 sinon 相关的测试,它仍然会失败。如果我不删除 sinon.js 而是删除所有测试并使用“ok(true)”断言创建一个 emty 测试,那么它仍然会失败并显示相同的错误消息 (contentTest.js:60: TypeError: qTest is not a函数),但是我的测试文件仅包含 10 行(当我的文件仅包含 10 行时,如何在第 60 行出现错误?)。

感谢大家提前提供任何帮助!

4

1 回答 1

0

不是一个解决方案,但也许是一种获取更多信息的方法:您可以从 shell 本地运行 js-test-driver 脚本吗?它会产生类似的错误细节吗?至少,这将为您提供更多信息和更短的反馈循环。

于 2013-08-26T03:38:14.393 回答