storefront/e2e/specs/browser.test.js
Mike Jolley 1f8f36a814
Update build tools (#1674)
Along with adding linting tools, commit also introduces the following changes:
- Adds our suite of tooling for code styling/linting and closes #1656
- Updates the license information which closes #1669
- Adds browserlist config instead of defining manually which closes #1497
- Removes grunt and uses npm instead for building which closes #1433
- Moving away from grunt has fixed #1662
2021-05-07 11:12:44 +02:00

9 lines
247 B
JavaScript

describe( 'Storefront', () => {
beforeAll( async () => {
await page.goto( STORE_URL );
} );
it( 'should have "built with Storefront" footer', async () => {
await expect( page ).toMatch( 'Built with Storefront & WooCommerce.' );
} );
} );