mirror of
https://github.com/woocommerce/storefront.git
synced 2025-10-03 14:04:42 +08:00
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
9 lines
247 B
JavaScript
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.' );
|
|
} );
|
|
} );
|