gpt4 book ai didi

node.js - 为什么带有nodeunit的nodejs测试用例在成功通过测试用例后仍然在webstorm中加载?

转载 作者:搜寻专家 更新时间:2023-11-01 00:08:43 25 4
gpt4 key购买 nike

我正在从事 nodejs 项目。我正在使用 nodeunit npm 模块来测试我的服务器端代码库。我正在使用 Webstorm作为编写我的代码并在 nodeunit 模块的帮助下测试服务器端代码的编辑器。

一切正常,我的测试用例正确通过,但测试用例的进度一直在 Webstorm 状态面板中加载。我每次都必须手动停止。有人对此有任何想法吗?

最佳答案

你是在最后调用 done() 吗?例如

exports.globalSetterTest = function(test){
var app = require('../helpers/globalsetter');
app.setData("abc");
var res = app.getData();
test.equal(res, "abc", "msg");
test.done();
};

我的设置与您相同,这里是我编写的一些示例测试。 https://github.com/captainchung/webstormNodeUnitTests/blob/master/test/spec.js

关于node.js - 为什么带有nodeunit的nodejs测试用例在成功通过测试用例后仍然在webstorm中加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18055942/

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