
* first test for draft orders * tests for channels in draft orders * tests for channels in draft orders * tests for channels in draft orders * test for moving draft order to orders * test for orders * test for orders * tests for draft orders * tests for draft orders * tests for draft orders * tests for draft orders * test for moving draft order
13 lines
387 B
JavaScript
13 lines
387 B
JavaScript
export const urlList = {
|
|
apiUri: Cypress.env("API_URI"),
|
|
channels: "channels/",
|
|
configuration: "configuration/",
|
|
draftOrders: "orders/drafts/",
|
|
homePage: "/",
|
|
orders: "orders/",
|
|
products: "products/",
|
|
warehouses: "warehouses/",
|
|
sales: "discounts/sales/",
|
|
collections: "collections/"
|
|
};
|
|
export const productDetailsUrl = productId => `${urlList.products}${productId}`;
|