Skip to content

Commit 995ea38

Browse files
committed
Add failing test
1 parent 2cd0a17 commit 995ea38

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

e2e/specs/browser.test.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ describe( 'Storefront', () => {
44
} );
55

66
it( 'should have "built with WooCommerce" footer', async () => {
7-
const footerText = await page.evaluate( () => document.querySelector( 'body' ).innerText );
7+
const footerText = await page.evaluate(
8+
() => document.querySelector( 'body' ).innerText
9+
);
810
expect( footerText ).toMatch( 'Built with WooCommerce.' );
11+
expect( 1 ).toBe( 2 );
912
} );
1013
} );

0 commit comments

Comments
 (0)