Files
sway-ball/__tests__/index.test.js
Huakk e35583c254
All checks were successful
continuous-integration/drone/push Build is passing
完成第一版
2024-07-11 23:12:30 +08:00

13 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()
})
})