Skip to content

Commit

Permalink
Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
malithsen committed Nov 12, 2024
1 parent 48ee34c commit 9e8355e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/e2e-pw/specs/merchant/woopay-setup.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,14 @@ import { test, Page } from '@playwright/test';
/**
* Internal dependencies
*/
import { getMerchant, getShopper } from '../../utils/helpers';
import { getMerchant } from '../../utils/helpers';
import { activateWooPay, deactivateWooPay } from '../../utils/merchant';

test.describe( 'WooPay setup', () => {
let merchantPage: Page;
let shopperPage: Page;
let wasWooPayEnabled: boolean;

test.beforeAll( async ( { browser } ) => {
shopperPage = ( await getShopper( browser ) ).shopperPage;
merchantPage = ( await getMerchant( browser ) ).merchantPage;
wasWooPayEnabled = await activateWooPay( merchantPage );
} );
Expand Down

0 comments on commit 9e8355e

Please sign in to comment.