diff --git a/admin/src/components/CreationFormular.spec.js b/admin/src/components/CreationFormular.spec.js index 388ab6aa9..5b0ac09f5 100644 --- a/admin/src/components/CreationFormular.spec.js +++ b/admin/src/components/CreationFormular.spec.js @@ -99,7 +99,10 @@ describe('CreationFormular', () => { describe('with mass creation', () => { beforeEach(async () => { jest.clearAllMocks() - await wrapper.setProps({ type: 'massCreation' }) + await wrapper.setProps({ type: 'massCreation', creation: [200, 400, 600] }) + await wrapper.setData({ rangeMin: 180 }) + await wrapper.setData({ text: 'Test create coins' }) + await wrapper.setData({ value: 90 }) }) describe('first radio button', () => { diff --git a/admin/src/components/CreationFormular.vue b/admin/src/components/CreationFormular.vue index af966a952..49993d14a 100644 --- a/admin/src/components/CreationFormular.vue +++ b/admin/src/components/CreationFormular.vue @@ -123,6 +123,7 @@