test: rm useless test

This commit is contained in:
zazzaz 2020-07-28 20:30:31 +08:00 committed by jeremywu
parent 5ecc3a0e00
commit c3d42339f8

View File

@ -1,15 +0,0 @@
import { mount } from '@vue/test-utils'
import Locale from '../src/index.vue'
const AXIOM = 'Rem is the best girl'
describe('Locale.vue', () => {
test('render test', () => {
const wrapper = mount(Locale, {
slots: {
default: AXIOM,
},
})
expect(wrapper.text()).toEqual(AXIOM)
})
})