-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
64 lines (52 loc) · 2.79 KB
/
Copy pathconfig.js
File metadata and controls
64 lines (52 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* eslint-disable no-undef */
export const base_url =
__ENV.URL || 'http://localhost:' + ( __ENV.WP_ENV_TESTS_PORT || '8086' );
export const base_host =
__ENV.HOST || 'localhost:' + ( __ENV.WP_ENV_TESTS_PORT || '8086' );
export const STORE_NAME = __ENV.STORE_NAME || 'WooCommerce Core E2E Test Suite';
export const FOOTER_TEXT = '';
export const admin_username = __ENV.A_USER || 'admin';
export const admin_password = __ENV.A_PW || 'password';
export const admin_acc_login = __ENV.A_ACC_LOGIN || false;
export const customer_username = __ENV.C_USER || 'customer';
export const customer_email =
__ENV.C_EMAIL || 'customer@woocommercecoree2etestsuite.com';
export const customer_password = __ENV.C_PW || 'password';
export const customer_user_id = __ENV.C_UID || '2';
export const customer_first_name = 'Jane';
export const customer_last_name = 'Smith';
export const hpos_status = __ENV.HPOS || false;
export const admin_orders_base_url = 'edit.php?post_type=shop_order';
export const hpos_admin_orders_base_url = 'admin.php?page=wc-orders';
export const addresses_customer_billing_first_name = 'John';
export const addresses_customer_billing_last_name = 'Doe';
export const addresses_customer_billing_company = 'Automattic';
export const addresses_customer_billing_country = 'US';
export const addresses_customer_billing_address_1 = 'addr 1';
export const addresses_customer_billing_address_2 = 'addr 2';
export const addresses_customer_billing_city = 'San Francisco';
export const addresses_customer_billing_state = 'CA';
export const addresses_customer_billing_postcode = '94107';
export const addresses_customer_billing_phone = '123456789';
export const addresses_customer_billing_email = 'john.doe@example.com';
export const addresses_guest_billing_first_name = 'John';
export const addresses_guest_billing_last_name = 'Doe';
export const addresses_guest_billing_company = 'Automattic';
export const addresses_guest_billing_country = 'US';
export const addresses_guest_billing_address_1 = 'addr 1';
export const addresses_guest_billing_address_2 = 'addr 2';
export const addresses_guest_billing_city = 'San Francisco';
export const addresses_guest_billing_state = 'CA';
export const addresses_guest_billing_postcode = '94107';
export const addresses_guest_billing_phone = '123456789';
export const addresses_guest_billing_email = 'john.doe@example.com';
export const payment_method = 'cod';
export const product_sku = __ENV.P_SKU || 'woo-beanie';
export const product_url = __ENV.P_URL || 'beanie';
export const product_search_term = __ENV.P_TERM || 'beanie';
export const product_category = __ENV.P_CAT || 'Accessories';
export const coupon_code = __ENV.P_COUPON || 'testing';
export const add_product_title = 'Test Product';
export const add_product_regular_price = '12';
export const think_time_min = '1';
export const think_time_max = '4';