From b0739fcc69f10b64daa2859b1866c158245f8d41 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Mon, 26 Apr 2021 04:00:15 +0200 Subject: [PATCH] don't skip nonce & invite code tests for registration.spec.js --- webapp/pages/registration.spec.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/webapp/pages/registration.spec.js b/webapp/pages/registration.spec.js index 60fa69901..7361b6164 100644 --- a/webapp/pages/registration.spec.js +++ b/webapp/pages/registration.spec.js @@ -102,7 +102,7 @@ describe('Registration', () => { expect(wrapper.find('.enter-nonce').text()).toContain('user@example.org') }) - it.skip('"nonce=64835" query in URI have nonce in input', async () => { + it('"nonce=64835" query in URI have nonce in input', async () => { mocks.$route.query = { method: 'invite-mail', email: 'user@example.org', @@ -160,7 +160,7 @@ describe('Registration', () => { expect(wrapper.find('.enter-nonce').text()).toContain('user@example.org') }) - it.skip('"nonce=64835" query in URI have nonce in input', async () => { + it('"nonce=64835" query in URI have nonce in input', async () => { mocks.$route.query = { method: 'invite-mail', email: 'user@example.org', @@ -181,7 +181,7 @@ describe('Registration', () => { expect(wrapper.find('.enter-invite').exists()).toBe(true) }) - it.skip('"inviteCode=AAAAAA" query in URI have invite code in input', async () => { + it('"inviteCode=AAAAAA" query in URI have invite code in input', async () => { mocks.$route.query = { method: 'invite-code', inviteCode: 'AAAAAA' } wrapper = Wrapper() await Vue.nextTick() @@ -220,7 +220,7 @@ describe('Registration', () => { expect(wrapper.find('.enter-nonce').text()).toContain('user@example.org') }) - it.skip('"nonce=64835" query in URI have nonce in input', async () => { + it('"nonce=64835" query in URI have nonce in input', async () => { mocks.$route.query = { method: 'invite-mail', email: 'user@example.org', @@ -273,7 +273,7 @@ describe('Registration', () => { expect(wrapper.find('.enter-nonce').text()).toContain('user@example.org') }) - it.skip('"nonce=64835" query in URI have nonce in input', async () => { + it('"nonce=64835" query in URI have nonce in input', async () => { mocks.$route.query = { method: 'invite-mail', email: 'user@example.org', @@ -294,7 +294,7 @@ describe('Registration', () => { expect(wrapper.find('.enter-invite').exists()).toBe(true) }) - it.skip('"inviteCode=AAAAAA" query in URI have invite code in input', async () => { + it('"inviteCode=AAAAAA" query in URI have invite code in input', async () => { mocks.$route.query = { method: 'invite-code', inviteCode: 'AAAAAA' } wrapper = await Wrapper() await Vue.nextTick()