2023-05-05 11:03:36 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import path from 'path';
|
|
|
|
|
2023-11-21 09:11:19 +00:00
|
|
|
export const BLOCK_THEME_SLUG = 'twentytwentyfour';
|
|
|
|
export const BLOCK_THEME_NAME = 'Twenty Twenty-Four';
|
2023-08-28 10:04:28 +00:00
|
|
|
export const CLASSIC_THEME_SLUG = 'storefront';
|
|
|
|
export const CLASSIC_THEME_NAME = 'Storefront';
|
2023-05-05 11:03:36 +00:00
|
|
|
export const BASE_URL = 'http://localhost:8889';
|
|
|
|
export const STORAGE_STATE_PATH = path.join(
|
|
|
|
process.cwd(),
|
|
|
|
'artifacts/storage-states/admin.json'
|
|
|
|
);
|
2023-12-08 16:44:59 +00:00
|
|
|
|
|
|
|
// User roles file paths
|
|
|
|
export const adminFile = '.auth/admin.json';
|
|
|
|
export const customerFile = '.auth/customer.json';
|
|
|
|
export const guestFile = '.auth/guest.json';
|