woocommerce/tests/performance/config.js

46 lines
2.1 KiB
JavaScript
Raw Normal View History

export const base_url = __ENV.URL || 'http://localhost:8084';
export const base_host = __ENV.HOST || 'localhost:8084';
2021-07-01 13:53:13 +00:00
export const admin_username = __ENV.A_USER || 'admin';
export const admin_password = __ENV.A_PW || 'password';
export const customer_username = __ENV.C_USER || 'customer@woocommercecoree2etestsuite.com';
export const customer_password = __ENV.C_PW || 'password';
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_id = __ENV.P_ID || '13';
2021-07-01 11:11:26 +00:00
export const product_search_term = __ENV.P_TERM || 'beanie';
2021-04-30 11:10:10 +00:00
2021-07-13 14:54:23 +00:00
export const add_product_title = 'Test Product';
export const add_product_regular_price = '12';
2021-04-30 11:10:10 +00:00
export const think_time_min = '1';
export const think_time_max = '4';