limo-platform/client/__tests__/index.test.js
2025-07-11 15:41:48 +08:00

12 lines
295 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()
})
})