From 86f46d501df1f210f311dbef25692d0b966797d7 Mon Sep 17 00:00:00 2001 From: Matt Roberts Date: Wed, 18 Dec 2024 21:19:38 +0000 Subject: [PATCH] Updated imports --- e2e/setup.ts | 2 +- e2e/step_definitions/fns.ts | 2 +- e2e/world.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/setup.ts b/e2e/setup.ts index ae66163a3..4ff69bc9d 100644 --- a/e2e/setup.ts +++ b/e2e/setup.ts @@ -1,6 +1,6 @@ import { Before, BeforeAll, AfterAll, After } from "@cucumber/cucumber" import debug from "debug" -import * as playwright from "playwright" +import * as playwright from "@playwright/test" import { getLatestLinkSentTo } from "./step_definitions/fns" import { FiderWorld } from "./world" diff --git a/e2e/step_definitions/fns.ts b/e2e/step_definitions/fns.ts index e0ced342b..03096b022 100644 --- a/e2e/step_definitions/fns.ts +++ b/e2e/step_definitions/fns.ts @@ -1,4 +1,4 @@ -import { Page } from "playwright" +import { Page } from "@playwright/test" export function delay(ms: number) { return new Promise((resolve) => setTimeout(resolve, ms)) diff --git a/e2e/world.ts b/e2e/world.ts index a5def6cf8..b0932c8a9 100644 --- a/e2e/world.ts +++ b/e2e/world.ts @@ -1,5 +1,5 @@ import { World as CucumberWorld } from "@cucumber/cucumber" -import { Page } from "playwright" +import { Page } from "@playwright/test" export interface FiderWorld extends CucumberWorld { tenantName: string