Skip to content

Commit

Permalink
Skip lazy-image tests until reinstated later
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark George committed Jan 31, 2022
1 parent 970f6e3 commit ce453af
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test.describe( 'Jetpack compatibility', () => {
await prerequisitesBuilder().withActivePlugins( [ 'jetpack' ] ).build();
} );

test( 'The Jetpack lazy-image module activation reflects in Boost dashboard', async ( {
test.skip( 'The Jetpack lazy-image module activation reflects in Boost dashboard', async ( {
page,
} ) => {
await prerequisitesBuilder( page ).withInactiveModules( [ 'lazy-images' ] ).build();
Expand All @@ -23,7 +23,7 @@ test.describe( 'Jetpack compatibility', () => {
expect( await jetpackBoostPage.isModuleEnabled( 'lazy-images' ) ).toEqual( true );
} );

test( 'The Jetpack lazy-image module deactivation reflects in Boost dashboard', async ( {
test.skip( 'The Jetpack lazy-image module deactivation reflects in Boost dashboard', async ( {
page,
} ) => {
await prerequisitesBuilder( page ).withActiveModules( [ 'lazy-images' ] ).build();
Expand All @@ -33,7 +33,7 @@ test.describe( 'Jetpack compatibility', () => {
expect( await jetpackBoostPage.isModuleEnabled( 'lazy-images' ) ).toEqual( false );
} );

test( 'The Boost lazy-image module activation reflects in Jetpack dashboard', async ( {
test.skip( 'The Boost lazy-image module activation reflects in Jetpack dashboard', async ( {
page,
} ) => {
await boostPrerequisitesBuilder( page ).withInactiveModules( [ 'lazy-images' ] ).build();
Expand All @@ -43,7 +43,7 @@ test.describe( 'Jetpack compatibility', () => {
expect( isActive ).toBe( true );
} );

test( 'The Boost lazy-image module deactivation reflects in Jetpack dashboard', async ( {
test.skip( 'The Boost lazy-image module deactivation reflects in Jetpack dashboard', async ( {
page,
} ) => {
await boostPrerequisitesBuilder( page ).withActiveModules( [ 'lazy-images' ] ).build();
Expand Down

0 comments on commit ce453af

Please sign in to comment.