18 lines
462 B
TypeScript
18 lines
462 B
TypeScript
/**
|
|
* Centralized test environment constants for Playwright and unit tests.
|
|
* Use snake_case names per project preference.
|
|
*/
|
|
export const test_base_url = 'http://demo.localhost:5173';
|
|
export const dev_api_base = 'https://dev-api.oneskyit.com';
|
|
export const demo_account_id = '_XY7DXtc9MY';
|
|
export const demo_event_id = 'pjrcghqwert';
|
|
|
|
export const TEST_ENV = {
|
|
test_base_url,
|
|
dev_api_base,
|
|
demo_account_id,
|
|
demo_event_id
|
|
};
|
|
|
|
export default TEST_ENV;
|