启动npm测试,但是它永远不会结束。当与MongoDB涉及的连接存在时,就会发生这种情况。很少见,因为测试有效,但永无止境。
before('setupApplication', async () => {
({ app, client } = await setupApplication());
//await prepareTestData()
});
after(async () => {
//await cleanupTestData();
await app.stop();
});
it('login with a test user', async () => {
const res = await client.post('/user-accounts/login').set('urlLogin', TEST_TENANT_URL)
.send({
email: TEST_EMAIL,
password: TEST_PASS
}).expect(200);
token = res.body.token;
expect(res.body).to.ownProperty("token").and.length(EXPECTED_TOKEN_LENGTH);
console.log("Logged in with token ", res.body.token);
});
问题:终端永无止境。就像线程仍在工作。我不知道环回问题还是什么。
有什么想法吗?我希望有人能帮助我。
谢谢。
从https://github.com/strongloop/loopback-next/issues/3672:]中的讨论中发表我的评论>
请使用Mocha选项exit
,它将在所有测试(以及每个挂钩之后/之后)结束之后结束该过程。请参阅https://mochajs.org/#configuring-mocha-nodejs了解更多信息。或者,您可以将--exit
选项添加到mocha
CLI,例如mocha --exit src/__tests__/**/*.js
。