boluo-app-main/__tests__/index.test.js
2025-03-31 22:34:22 +08:00

13 lines
295 B
JavaScript

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