20 lines
588 B
TypeScript
20 lines
588 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import {
|
|
BLOCK_THEME_WITH_TEMPLATES_SLUG,
|
|
DB_EXPORT_FILE,
|
|
cli,
|
|
} from '@woocommerce/e2e-utils';
|
|
import { test as setup, expect } from '@woocommerce/e2e-playwright-utils';
|
|
|
|
setup( 'Sets up the block theme with templates', async ( { requestUtils } ) => {
|
|
await requestUtils.activateTheme( BLOCK_THEME_WITH_TEMPLATES_SLUG );
|
|
|
|
const cliOutput = await cli(
|
|
`npm run wp-env run tests-cli wp db export ${ DB_EXPORT_FILE }`
|
|
);
|
|
// eslint-disable-next-line playwright/no-standalone-expect
|
|
expect( cliOutput.stdout ).toContain( 'Success: Exported' );
|
|
} );
|