2021-04-02 11:01:38 +00:00
|
|
|
export const SHIPPING_ZONES_LIST = {
|
2021-07-12 08:50:50 +00:00
|
|
|
addShippingZone: "[data-test-id='add-shipping-zone']",
|
|
|
|
unitSelect: "[id='mui-component-select-unit']",
|
2022-02-11 11:28:55 +00:00
|
|
|
saveUnit: '[data-test-id="save-unit"]'
|
2021-04-02 11:01:38 +00:00
|
|
|
};
|
2022-02-11 15:08:45 +00:00
|
|
|
|
|
|
|
export const SHIPPING_ZONE_CHECKBOX = shippingId =>
|
|
|
|
`[data-test-id="${shippingId}-checkbox"]`;
|
|
|
|
|
|
|
|
export const SHIPPING_ZONE_NAME = shippingId =>
|
|
|
|
`[data-test-id="${shippingId}-name"]`;
|