
* remove classes in shipping & products utils * remove classes * add tests plans * add const * tests for shipping methods * test for shipping * test for shipping * tests for shipping * install eslint-plugin-chai-friendly * update stories * add missing imports
25 lines
673 B
JavaScript
25 lines
673 B
JavaScript
// <reference types="cypress" />
|
|
import { urlList } from "../../url/urlList";
|
|
|
|
describe("Warehouse settings", () => {
|
|
beforeEach(() => {
|
|
cy.clearSessionData();
|
|
});
|
|
|
|
xit("Warehouse section visible in the configuration", () => {
|
|
cy.visit(urlList.configuration)
|
|
.loginUser()
|
|
.get("[data-test-id=warehouses][data-test=settingsSubsection]")
|
|
.click();
|
|
cy.location("pathname").should("eq", "/warehouses/");
|
|
});
|
|
|
|
xit("Editing warehouse is available", () => {
|
|
cy.visit(urlList.warehouses)
|
|
.loginUser()
|
|
.get("[data-test=editButton]")
|
|
.first()
|
|
.click()
|
|
.get("[data-test=generalInformationSection]");
|
|
});
|
|
});
|