gpt4 book ai didi

javascript - 咕噜 Mocha `PhantomJS timed out`

转载 作者:行者123 更新时间:2023-11-29 18:14:11 25 4
gpt4 key购买 nike

从 grunt 运行我的 mocha 测试时,我不断收到此消息。

Warning: PhantomJS timed out, possibly due to a missing Mocha run() call. Use --force to continue.

测试在浏览器中运行良好,但无法从 grunt 启动。我一直在使用 this用于运行浏览器测试的 Grunt 插件,这是我的 Gruntfile.js 的相关部分。

// I've checked if it does server while my tests are running & it does
connect: {
test: {
// public is where all my files are, of course
base: 'public',
port: 8080
}
},

mocha: {
client: {
urls: ['http://0.0.0.0:8080/test.html'],
log: true,
}
},

这是test.html文件

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="css/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="js/test.js"></script>
<script>mocha.run();</script>
</body>
</html>

这是public目录

/public
- index.html
- test.html
/css
- main.css
- mocha.css
/js
- main.js
- test.js \\ contains main.js + mocha.js + my tests

这是失败后 grunt 的输出。

Running "uglify:dev" (uglify) task
File public/js/main.js created.
File public/js/test.js created.

Running "connect:test" (connect) task
Started connect web server on http://0.0.0.0:8080

Running "mocha:client" (mocha) task
Testing: http://0.0.0.0:8080/test.html

Warning: PhantomJS timed out, possibly due to a missing Mocha run() call. Use --force to continue.

Aborted due to warnings.

我测试所需的所有 src 都放在一个文件中,它包括我的源代码(及其依赖项)、mocha 和测试。

最佳答案

不知道它是否仍然与您相关,但以防万一其他人遇到此问题:在我的例子中,如果我直接从命令行调用它们,测试工作得很好,比如:mocha-phantomjs .\test\src\tests.html。只是 grunt-mocha 无法运行它们,抛出了这个错误。转移到 grunt-mocha-phantomjs为我修复了它,无需更改代码。 Gruntfile 看起来像这样:

mocha_phantomjs: {
all : ["./test/**/*.html"]
}

(如果您在 jshint 设置中将 camelcase 设置为 true,您可能必须转义该属性名称。)

关于javascript - 咕噜 Mocha `PhantomJS timed out`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24823544/

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