From ba43825a9b598d12e41c4b5f5927b63c109b621b Mon Sep 17 00:00:00 2001 From: Hoang Nguyen Date: Wed, 24 Feb 2021 16:09:55 +0700 Subject: [PATCH] ui: Fix npm unit test failures in 4.15 (#4718) * Edit the test to match the latest code * fix travis build failures * correct wrong comparison conditions * fix travis build --- ui/tests/unit/views/AutogenView.spec.js | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) 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)