Skip to content

Commit

Permalink
Move create-flow.spec out of own folder
Browse files Browse the repository at this point in the history
  • Loading branch information
jamdelion committed Sep 18, 2024
1 parent 75abcf4 commit a12eea2
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Browser, expect, test } from "@playwright/test";
import type { Context } from "../helpers/context";
import type { Context } from "./helpers/context";
import {
contextDefaults,
setUpTestContext,
tearDownTestContext,
} from "../helpers/context";
import { getTeamPage } from "../helpers/getPage";
import { createAuthenticatedSession } from "../helpers/globalHelpers";
} from "./helpers/context";
import { getTeamPage } from "./helpers/getPage";
import { createAuthenticatedSession } from "./helpers/globalHelpers";
import {
answerAddressInput,
answerChecklist,
Expand All @@ -17,8 +17,8 @@ import {
answerQuestion,
answerTextInput,
clickContinue,
} from "../helpers/userActions";
import { PlaywrightEditor } from "../pages/Editor";
} from "./helpers/userActions";
import { PlaywrightEditor } from "./pages/Editor";

test.describe("Flow creation, publish and preview", () => {
let context: Context = {
Expand Down

0 comments on commit a12eea2

Please sign in to comment.