gpt4 book ai didi

qunit - 如何使用 node-qunit?

转载 作者:行者123 更新时间:2023-12-04 04:18:26 25 4
gpt4 key购买 nike

此页面上的信息似乎不太可能出现——https://github.com/kof/node-qunit .我有一个安装 nodejs 并安装了 node-quit 模块的设置。我有测试运行器并执行命令 node /path/to/runner.js .下面是我的设置示例。有关如何执行此操作的任何想法或示例,或者我使用错误。我之前使用 Rhino 和 EnvJs 运行 qunit 测试没有任何问题,但我想我尝试使用 nodejs,因为我将它用于其他事情并且打包系统可以在我的构建中编写脚本。也许我错过了一个节点选项来包含 Qunit 或一些未设置的环境变量——这是有道理的。

文件结构

node/
public/
js/
main.js
tests/
js/
testrunner.js
tests.js

安装
cd node
npm install qunit

这将更新文件结构。
node/
node_modules/
qunit/

测试/js/testrunner.js
var runner = require("../../node/node_modules/qunit");
runner.run({
code : "/full/path/to/public/js/main.js",
tests : "/full/path/to/tests/js/tests.js"
});

测试/js/tests.js
test("Hello World", function() {
ok(true);
});

命令
node tests/js/testrunner.js

最佳答案

看来您需要使用 main.js 的完整路径。和 tests.js文件,还包括到 qunit 的相对路径模块。我更新了上面的代码作为其他人的示例。

关于qunit - 如何使用 node-qunit?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11236543/

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