chore: lint

This commit is contained in:
Anthony Fu 2022-05-01 11:52:59 +08:00
parent 42abb64551
commit 0265022518
3 changed files with 5 additions and 5 deletions

View File

@ -6,10 +6,10 @@
"i18n-ally.sortKeys": true, "i18n-ally.sortKeys": true,
"prettier.enable": false, "prettier.enable": false,
"editor.codeActionsOnSave": { "editor.codeActionsOnSave": {
"source.fixAll.eslint": true, "source.fixAll.eslint": true
}, },
"files.associations": { "files.associations": {
"*.css": "postcss", "*.css": "postcss"
}, },
"editor.formatOnSave": false, "editor.formatOnSave": false
} }

View File

@ -5,7 +5,7 @@ export const install: UserModule = ({ isClient, router }) => {
if (!isClient) if (!isClient)
return return
router.isReady().then(async() => { router.isReady().then(async () => {
const { registerSW } = await import('virtual:pwa-register') const { registerSW } = await import('virtual:pwa-register')
registerSW({ immediate: true }) registerSW({ immediate: true })
}) })

View File

@ -9,7 +9,7 @@ describe('Counter.vue', () => {
expect(wrapper.html()).toMatchSnapshot() expect(wrapper.html()).toMatchSnapshot()
}) })
it('should be interactive', async() => { it('should be interactive', async () => {
const wrapper = mount(Counter, { props: { initial: 0 } }) const wrapper = mount(Counter, { props: { initial: 0 } })
expect(wrapper.text()).toContain('0') expect(wrapper.text()).toContain('0')