mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-20 02:56:11 +00:00
18 lines
360 B
JavaScript
18 lines
360 B
JavaScript
import "./commands";
|
|
import failOnConsoleError from "cypress-fail-on-console-error";
|
|
|
|
failOnConsoleError();
|
|
|
|
before(() => {
|
|
if (Cypress.browser.family === "chromium") {
|
|
Cypress.automation("remote:debugger:protocol", {
|
|
command: "Network.setCacheDisabled",
|
|
params: { cacheDisabled: true },
|
|
});
|
|
}
|
|
});
|
|
|
|
beforeEach(() => {
|
|
cy.setup();
|
|
});
|