Skip to content

Commit

Permalink
Fix e2e test for cover block height control
Browse files Browse the repository at this point in the history
  • Loading branch information
akasunil committed Jun 17, 2024
1 parent 5aa8d5c commit 7586f2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/specs/editor/blocks/cover.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ test.describe( 'Cover', () => {
const defaultHeightValue = await coverBlockEditorSettings
.getByRole( 'slider', { name: 'Minimum height' } )
.inputValue();
expect( defaultHeightValue ).toBeFalsy();
expect( defaultHeightValue ).toEqual( '0' );

// There is no accessible locator for the draggable block resize edge,
// which is he bottom edge of the Cover block.
Expand Down

0 comments on commit 7586f2f

Please sign in to comment.