在所有测试中始终会调用手动模拟笑话

时间:2019-06-12 11:02:50

标签: javascript unit-testing jestjs frontend

我有这样的文件夹结构。

Folder structure

asu.test.js和man.test.js具有相同的代码。

import mantap from "mantap";
it("mantap", () => {
   expect(1).toBe(1);
});

mantap.js

console.log("mock mantap");

当我尝试致电jest --coverage时。我的手动模拟(mantap.js)总是在所有文件测试中调用。 mantap.js位于文件夹aaa中,而我没有按照here所述设置roots配置。

所以。这样的结果。

enter image description here

0 个答案:

没有答案