11 lines
300 B
JavaScript
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();
|
|
});
|
|
});
|