removes useless test

This commit is contained in:
2019-07-31 15:12:48 +02:00
parent fccd9b999b
commit e07b236313

View File

@@ -1,18 +0,0 @@
import { shallowMount } from '@vue/test-utils'
import NumberInput from '../NumberInput'
const factory = (value = 0) => {
return shallowMount(NumberInput, {
propsData: {
value: value
},
});
};
describe('NumberInput', () {
test('displays error when invalid', () => {
const wrapper = factory("fd2");
expect(wrapper.find("input").classes('is-danger')).toBe(true)
})
})