We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cd0a17 commit 995ea38Copy full SHA for 995ea38
e2e/specs/browser.test.js
@@ -4,7 +4,10 @@ describe( 'Storefront', () => {
4
} );
5
6
it( 'should have "built with WooCommerce" footer', async () => {
7
- const footerText = await page.evaluate( () => document.querySelector( 'body' ).innerText );
+ const footerText = await page.evaluate(
8
+ () => document.querySelector( 'body' ).innerText
9
+ );
10
expect( footerText ).toMatch( 'Built with WooCommerce.' );
11
+ expect( 1 ).toBe( 2 );
12
13
0 commit comments