From 26bf99d91ad4c30295a10f1eaa192cc86b4b0775 Mon Sep 17 00:00:00 2001 From: shelly_goldblit Date: Sun, 31 Dec 2023 13:45:34 +0200 Subject: [PATCH] fix build --- cypress/e2e/accessibility.cy.ts | 3 +-- cypress/e2e/history.cy.ts | 2 +- cypress/e2e/keyboard.cy.ts | 3 +-- cypress/e2e/map.cy.ts | 3 +-- cypress/e2e/modals.cy.ts | 3 +-- 5 files changed, 5 insertions(+), 9 deletions(-) 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();