2022-02-25 09:44:16 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
const config = require( 'config' );
|
|
|
|
|
|
|
|
/**
|
2022-03-09 10:16:24 +00:00
|
|
|
* Constants used for E2E tests.
|
2022-02-25 09:44:16 +00:00
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
*/
|
2022-03-07 15:23:31 +00:00
|
|
|
export const SIMPLE_PRODUCT_NAME = 'Woo Single #1';
|
2022-03-08 13:52:40 +00:00
|
|
|
export const BILLING_DETAILS = config.get( 'addresses.customer.billing' );
|
2022-03-31 11:10:50 +00:00
|
|
|
export const SHIPPING_DETAILS = config.get( 'addresses.customer.shipping' );
|
2022-03-25 17:34:17 +00:00
|
|
|
export const CUSTOMER_USERNAME = config.get( 'users.customer.username' );
|
|
|
|
export const CUSTOMER_PASSWORD = config.get( 'users.customer.password' );
|