diff --git a/ui/tests/unit/views/AutogenView.spec.js b/ui/tests/unit/views/AutogenView.spec.js index fbae93c9cf0..8823894dbcc 100644 --- a/ui/tests/unit/views/AutogenView.spec.js +++ b/ui/tests/unit/views/AutogenView.spec.js @@ -1078,11 +1078,11 @@ describe('Views > AutogenView.vue', () => { }) expect(wrapper.vm.currentAction.params).toEqual([ - { name: 'id', type: 'string' }, - { name: 'name', type: 'string' }, { name: 'column1', type: 'string' }, { name: 'column2', type: 'string' }, - { name: 'column3', type: 'string' } + { name: 'column3', type: 'string' }, + { name: 'name', type: 'string' }, + { name: 'id', type: 'string' } ]) expect(wrapper.vm.currentAction.paramFields).toEqual([]) expect(wrapper.vm.showAction).toBeTruthy() @@ -1127,11 +1127,11 @@ describe('Views > AutogenView.vue', () => { }) expect(wrapper.vm.currentAction.params).toEqual([ - { name: 'id', type: 'string' }, - { name: 'name', type: 'string' }, { name: 'column1', type: 'string' }, { name: 'column2', type: 'string' }, - { name: 'column3', type: 'string' } + { name: 'column3', type: 'string' }, + { name: 'name', type: 'string' }, + { name: 'id', type: 'string' } ]) expect(wrapper.vm.currentAction.paramFields).toEqual([ { name: 'id', type: 'string' }, @@ -2141,7 +2141,6 @@ describe('Views > AutogenView.vue', () => { { name: 'id', type: 'uuid' } ], paramFields: [ - { name: 'id', type: 'uuid', description: '', required: false } ], mapping: {} }, @@ -2191,8 +2190,7 @@ describe('Views > AutogenView.vue', () => { { name: 'id', type: 'uuid' } ], paramFields: [ - { name: 'name', type: 'string', description: '', required: false }, - { name: 'id', type: 'uuid', description: '', required: false } + { name: 'name', type: 'string', description: '', required: false } ], mapping: {} }, @@ -2259,6 +2257,7 @@ describe('Views > AutogenView.vue', () => { spyConsole.log = jest.spyOn(console, 'log').mockImplementation(() => {}) wrapper.vm.$nextTick(() => { + wrapper.vm.form.getFieldDecorator('column1', { initialValue: null }) const event = document.createEvent('Event') wrapper.vm.execSubmit(event)