From 6047d315c868965874450a7bc161c94f379fcf65 Mon Sep 17 00:00:00 2001 From: Darko Date: Thu, 12 Jan 2023 17:57:40 +0100 Subject: [PATCH] fix: added authProvider --- test-e2e/tests/account_test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test-e2e/tests/account_test.ts b/test-e2e/tests/account_test.ts index 9c3caf82c..f1ce26dbc 100644 --- a/test-e2e/tests/account_test.ts +++ b/test-e2e/tests/account_test.ts @@ -15,9 +15,9 @@ const firstName = 'John Q.'; const lastName = 'Tester'; Feature('account').retry(Number(process.env.TEST_RETRY_COUNT) || 0); -const configs = new DataTable(['config', 'resetPasswordType', 'canEditEmail']); -configs.add([testConfigs.svod, 'resetlink', true]); -configs.xadd([testConfigs.inplayerSvod, 'direct', false]); +const configs = new DataTable(['config', 'authProvider', 'resetPasswordType', 'canEditEmail']); +configs.add([testConfigs.svod, 'Cleeng', 'resetlink', true]); +configs.xadd([testConfigs.inplayerSvod, 'InPlayer', 'direct', false]); Data(configs).Scenario('I can see my account data', async ({ I, current }) => { loginContexts[current.config.label] = await I.beforeAccount(current.config, loginContexts[current.config.label], firstName, lastName); @@ -45,7 +45,7 @@ Data(configs).Scenario('I can see my account data', async ({ I, current }) => { I.see('Edit information'); I.see('Terms & tracking'); - I.see(`I accept the Terms and Conditions of ${current.config.label}.`); + I.see(`I accept the Terms and Conditions of ${current.authProvider}.`); I.see(consentCheckbox); I.seeInCurrentUrl(constants.accountsUrl);