test(单元测试): 初始化测试用例
This commit is contained in:
9
test/module/errorHandler.test.ts
Normal file
9
test/module/errorHandler.test.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import errorHandler from "../../src/module/errorHandler";
|
||||
|
||||
describe("show error modal", () => {
|
||||
test("doError", () => {
|
||||
wx.__mock__.modalIsShow = false;
|
||||
errorHandler.doError("标题", "内容");
|
||||
expect(wx.__mock__.modalIsShow).toBe(true);
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user