gpt4 book ai didi

node.js - 当我在项目中运行 Mocha 测试时,测试后无法终止

转载 作者:太空宇宙 更新时间:2023-11-04 00:14:25 26 4
gpt4 key购买 nike

我正在使用 Mocha 进行测试。

这是我的测试用例。

const mysql_service = require('../../router/mysql_service')

const chai = require('chai')
var chaiAsPromised = require("chai-as-promised");

chai.use(chaiAsPromised);
const expect = chai.expect;
describe('mysql_service', function () {
this.timeout(20000)
it('#qryInterconnectionStocks', function (done) {
mysql_service.qryInterconnectionStocks(20)
.then(function(result) {
expect(result).not.to.be.null
expect(Array.isArray(result)).to.be.true
// console.log(result)
done()
},function(err) {
console.log(err)
expect(err).to.be.null
done(err)
})

})
})

首先,我运行测试命令

mocha test/**/*.js

成功,但终端不退出。

最佳答案

您应该在 mocha 命令中添加 --exit 标志以使其退出,请参阅 breaking changes .

关于node.js - 当我在项目中运行 Mocha 测试时,测试后无法终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47829365/

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