10

我正在使用Yeoman来搭建我的项目。它带有几个方便的东西,包括一个基于PhantomJS的测试运行器。

我的问题是,虽然我的测试在浏览器中正确运行,但在 CLI 中尝试使用 PhantomJS 运行它们时会超时。

这是我的测试的index.html样子:

<!doctype html>
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <title>Mocha Spec Runner</title>
  <link rel="stylesheet" href="lib/mocha/mocha.css">
</head>
<body>
  <div id="mocha"></div>
  <script src="lib/mocha/mocha.js"></script>
  <!-- assertion framework -->
  <script src="lib/chai.js"></script>

  <!-- include source files here... -->
  <script data-main="scripts/main" src="scripts/vendor/require.js"></script>

  <script>
    mocha.setup({ui: 'bdd', ignoreLeaks: true});
    expect = chai.expect;
    should = chai.should();
    require(['../spec/map.spec'], function () {
      setTimeout(function () {
        require(['../runner/mocha']);
      }, 100);
    });
  </script> 

</body>
</html>

这是map.spec.js

require(['map'], function (Map) {
  describe('Choropleth Map Generator', function() {
    describe('Configure the map', function () {
      it("should enforce mandatory parameters in the configuration", function () {
        var config = {title: 'test configuration'};
        var map = new Map(config);
        (function () {
          map.getConfig();
        }).should.throw(Error);
      });
    });
  });
});

现在,当我这样做时yeoman test,我得到了这个:

Running "server:phantom" (server) task

Starting static web server on port 3501

[...]

Running "mocha:all" (mocha) task
Testing index.html
<WARN> PhantomJS timed out, possibly due to a missing Mocha run() call. Use --force to continue. </WARN>

Aborted due to warnings.

正如我所说,yeoman server:test在浏览器中正确显示我的断言。

我正在使用 Yeoman 0.9.6 和 PhantomJS 1.7.0。任何帮助表示赞赏。

4

2 回答 2

4

mocha我通过仔细检查in的路径解决了同样的警告test/index.html

<link rel="stylesheet" href="lib/mocha/mocha.css">
</head>
<body>
  <div id="mocha"></div>
  <script src="lib/mocha/mocha.js"></script>
于 2013-01-11T00:07:38.113 回答
3

你在 Gruntfile 中的 mocha 配置是什么。你有没有类似的东西:

mocha: {
  all: ['http://localhost:3501/index.html']
},
于 2013-01-10T04:58:44.737 回答