Files
jdt-aoshi/__tests__/index.test.js
YuanHuakk 025c9e1e1e
Some checks failed
continuous-integration/drone Build is failing
init
2024-11-18 20:49:09 +08:00

11 lines
300 B
JavaScript

import TestUtils from "@tarojs/test-utils-vue3";
describe("Testing", () => {
test("Test", async () => {
const testUtils = new TestUtils();
await testUtils.createApp();
await testUtils.PageLifecycle.onShow("pages/index/index");
expect(testUtils.html()).toMatchSnapshot();
});
});