Skip to content

Commit

Permalink
Updated imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwoberts committed Dec 18, 2024
1 parent 12b150f commit 86f46d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/setup.ts
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion e2e/step_definitions/fns.ts
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion e2e/world.ts
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 86f46d5

Please sign in to comment.