Skip to content

Commit

Permalink
Fix: E2E tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitrox committed Oct 8, 2024
1 parent 1252ac9 commit 6d46a02
Showing 1 changed file with 28 additions and 20 deletions.
48 changes: 28 additions & 20 deletions tests/e2e/specs/setup-mc/step-1-accounts.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,12 @@ test.describe( 'Set up accounts', () => {
await setupAdsAccountPage.fulfillAdsAccounts(
[
[],
{
id: 78787878,
name: 'gla',
},
[
{
id: 78787878,
name: 'gla',
},
],
],
200,
[ 'GET' ]
Expand All @@ -254,12 +256,14 @@ test.describe( 'Set up accounts', () => {
await setupAdsAccountPage.fulfillMCAccounts(
[
[],
{
id: 5432178,
name: null,
subaccount: null,
domain: null,
},
[
{
id: 5432178,
name: null,
subaccount: null,
domain: null,
},
],
],
200,
'GET'
Expand Down Expand Up @@ -339,10 +343,12 @@ test.describe( 'Set up accounts', () => {
await setupAdsAccountPage.fulfillAdsAccounts(
[
[],
{
id: 78787878,
name: 'gla',
},
[
{
id: 78787878,
name: 'gla',
},
],
],
200,
[ 'GET' ]
Expand All @@ -351,12 +357,14 @@ test.describe( 'Set up accounts', () => {
await setupAdsAccountPage.fulfillMCAccounts(
[
[],
{
id: 5432178,
name: null,
subaccount: null,
domain: null,
},
[
{
id: 5432178,
name: null,
subaccount: null,
domain: null,
},
],
],
200,
'GET'
Expand Down

0 comments on commit 6d46a02

Please sign in to comment.