Skip to content

Commit

Permalink
make check more strict
Browse files Browse the repository at this point in the history
Co-authored-by: Bart Kalisz <bartlomiej.kalisz@gmail.com>
  • Loading branch information
Mamaduka and WunderBart authored Oct 5, 2023
1 parent ee69dd6 commit 1661a68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/specs/editor/local/demo.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ test.describe( 'New editor state', () => {
const isDirty = await page.evaluate( () => {
return window.wp.data.select( 'core/editor' ).isEditedPostDirty();
} );
expect( isDirty ).toBeTruthy();
expect( isDirty ).toBe( true );

await expect(
page
Expand Down

0 comments on commit 1661a68

Please sign in to comment.