CYS: not run font picker tests on WordPress 6.4 (#47182)
* CYS: not run font picker tests on WordPress 6.4 * improve how the test is skipped * Add changefile(s) from automation for the following project(s): woocommerce --------- Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
parent
66c57693c1
commit
8954785c96
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: fix
|
||||||
|
Comment: CYS: not run font picker E2E tests on WordPress 6.4
|
||||||
|
|
|
@ -41,6 +41,11 @@ const slugFontMap = {
|
||||||
};
|
};
|
||||||
|
|
||||||
test.describe( 'Assembler -> Font Picker', () => {
|
test.describe( 'Assembler -> Font Picker', () => {
|
||||||
|
test.skip(
|
||||||
|
process.env.WP_ENV_CORE && process.env.WP_ENV_CORE.includes( '6.4' ),
|
||||||
|
'Skipping, font picker not available in WP 6.4'
|
||||||
|
);
|
||||||
|
|
||||||
test.use( { storageState: process.env.ADMINSTATE } );
|
test.use( { storageState: process.env.ADMINSTATE } );
|
||||||
|
|
||||||
test.beforeAll( async ( { baseURL } ) => {
|
test.beforeAll( async ( { baseURL } ) => {
|
||||||
|
|
Loading…
Reference in New Issue