woocommerce/plugins/woocommerce-blocks/tests/e2e/utils/constants.ts

15 lines
415 B
TypeScript

/**
* External dependencies
*/
import path from 'path';
export const BLOCK_THEME_SLUG = 'twentytwentythree';
export const BLOCK_THEME_NAME = 'Twenty Twenty-Three';
export const CLASSIC_THEME_SLUG = 'storefront';
export const CLASSIC_THEME_NAME = 'Storefront';
export const BASE_URL = 'http://localhost:8889';
export const STORAGE_STATE_PATH = path.join(
process.cwd(),
'artifacts/storage-states/admin.json'
);