2022-02-25 09:44:16 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
const config = require( 'config' );
|
|
|
|
const baseUrl = config.get( 'url' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shop pages.
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
export const SHOP_CART_BLOCK_PAGE = baseUrl + 'cart-block';
|
|
|
|
export const SHOP_CHECKOUT_BLOCK_PAGE = baseUrl + 'checkout-block';
|
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' );
|