policeSecurity/collect_information/__tests__/index.test.js

13 lines
295 B
JavaScript
Raw Normal View History

2024-09-10 11:00:20 +08:00
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()
})
})