-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into fix/9304-fix-alignment-issue-with-link-lo…
…go-in-settings
- Loading branch information
Showing
10 changed files
with
84 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Significance: patch | ||
Type: dev | ||
|
||
Update snapshots for E2E Playwright screenshots |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Significance: patch | ||
Type: dev | ||
Comment: Minor improvements to automated tests around WooPay | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Significance: patch | ||
Type: update | ||
Comment: No need changelog entry for this change as there has been one that encapsulate all the payout rename changes. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-64 Bytes
(100%)
...g-Geolocation-feature-83665-tch-by-geolocation-correctly-with-USD-and-GBP-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
...hots__/multi-currency.spec.ts/Multi-currency-page-load-without-any-errors-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/** | ||
* External dependencies | ||
*/ | ||
import { test, Page } from '@playwright/test'; | ||
/** | ||
* Internal dependencies | ||
*/ | ||
import { getMerchant } from '../../utils/helpers'; | ||
import { activateWooPay, deactivateWooPay } from '../../utils/merchant'; | ||
|
||
test.describe( 'WooPay setup', () => { | ||
let merchantPage: Page; | ||
let wasWooPayEnabled: boolean; | ||
|
||
test.beforeAll( async ( { browser } ) => { | ||
merchantPage = ( await getMerchant( browser ) ).merchantPage; | ||
wasWooPayEnabled = await activateWooPay( merchantPage ); | ||
} ); | ||
|
||
test.afterAll( async () => { | ||
if ( ! wasWooPayEnabled ) { | ||
await deactivateWooPay( merchantPage ); | ||
} | ||
} ); | ||
|
||
test( 'can disable the WooPay feature', async () => { | ||
await deactivateWooPay( merchantPage ); | ||
} ); | ||
|
||
test( 'can enable the WooPay feature', async () => { | ||
await activateWooPay( merchantPage ); | ||
} ); | ||
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters