diff --git a/cypress/e2e/accessibility.cy.ts b/cypress/e2e/accessibility.cy.ts index ca43ab70..9f74c4c8 100644 --- a/cypress/e2e/accessibility.cy.ts +++ b/cypress/e2e/accessibility.cy.ts @@ -1,5 +1,4 @@ -import { then } from "@shellygo/cypress-test-utils/assertable"; -import MaputnikDriver from "./maputnik-driver"; +import { MaputnikDriver, then } from "./maputnik-driver"; describe("accessibility", () => { let { beforeAndAfter, get, when, should } = new MaputnikDriver(); diff --git a/cypress/e2e/history.cy.ts b/cypress/e2e/history.cy.ts index 0d91174d..7a16b62f 100644 --- a/cypress/e2e/history.cy.ts +++ b/cypress/e2e/history.cy.ts @@ -1,4 +1,4 @@ -import MaputnikDriver from "./maputnik-driver"; +import { MaputnikDriver } from "./maputnik-driver"; describe("history", () => { let { beforeAndAfter, when, get, should } = new MaputnikDriver(); diff --git a/cypress/e2e/keyboard.cy.ts b/cypress/e2e/keyboard.cy.ts index 4cc4b388..b5b1f754 100644 --- a/cypress/e2e/keyboard.cy.ts +++ b/cypress/e2e/keyboard.cy.ts @@ -1,5 +1,4 @@ -import { then } from "@shellygo/cypress-test-utils/assertable"; -import MaputnikDriver from "./maputnik-driver"; +import { MaputnikDriver, then } from "./maputnik-driver"; describe("keyboard", () => { let { beforeAndAfter, given, when, get } = new MaputnikDriver(); diff --git a/cypress/e2e/map.cy.ts b/cypress/e2e/map.cy.ts index 1a11dfe2..d0956bcb 100644 --- a/cypress/e2e/map.cy.ts +++ b/cypress/e2e/map.cy.ts @@ -1,5 +1,4 @@ -import { then } from "@shellygo/cypress-test-utils/assertable"; -import MaputnikDriver from "./maputnik-driver"; +import { MaputnikDriver, then } from "./maputnik-driver"; describe("map", () => { let { beforeAndAfter, get, when } = new MaputnikDriver(); diff --git a/cypress/e2e/modals.cy.ts b/cypress/e2e/modals.cy.ts index 9d7b33e2..58fb964a 100644 --- a/cypress/e2e/modals.cy.ts +++ b/cypress/e2e/modals.cy.ts @@ -1,5 +1,4 @@ -import { then } from "@shellygo/cypress-test-utils/assertable"; -import MaputnikDriver from "./maputnik-driver"; +import { MaputnikDriver, then } from "./maputnik-driver"; describe("modals", () => { let { beforeAndAfter, when, get } = new MaputnikDriver();