diff --git a/src/constants.ts b/src/constants.ts new file mode 100644 index 00000000..b557bb3c --- /dev/null +++ b/src/constants.ts @@ -0,0 +1 @@ +export const EXAMPLE_WEBSITE = "http://example.org"; diff --git a/src/snap/install.ts b/src/snap/install.ts index ff37f800..c3e5b042 100644 --- a/src/snap/install.ts +++ b/src/snap/install.ts @@ -8,7 +8,7 @@ import { profileDropdownClick, } from "../helpers"; import { DappeteerPage } from "../page"; -import { EXAMPLE_WEBSITE } from "../../test/constant"; +import { EXAMPLE_WEBSITE } from "../constants"; import { startSnapServer, toUrl } from "./install-utils"; import { flaskOnly, isFirstElementAppearsFirst } from "./utils"; import { InstallSnapResult } from "./types";