1
0
mirror of synced 2024-11-22 05:16:05 +03:00

Removes debugging artifacts for Travis CI troubleshooting

This commit is contained in:
Justin Schroeder 2019-11-01 21:03:01 -04:00
parent 4f250563fd
commit c736f818af
2 changed files with 1 additions and 5 deletions

View File

@ -1,6 +1,6 @@
module.exports = {
env: {
testing: {
test: {
presets: [
[ '@babel/preset-env', {
targets: {

View File

@ -142,10 +142,6 @@ test('test that inputs that arent updated dont re-context themselves', () => {
expect(wrapper.find({ref: "second"}).vm.context === secondContext).toBe(true)
})
test('this one should fail', () => {
expect(false).tobe(true)
})
test('test that inputs contain their v-model value as the initial input', () => {
const wrapper = mount(FormulateInput, { propsData: { type: 'text', formulateValue: 'initial val' } })
expect(wrapper.find('input').element.value).toBe('initial val')