We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d90568e commit 87f308dCopy full SHA for 87f308d
playwright.config.ts
@@ -1,6 +1,11 @@
1
+import path from "path"
2
+
3
+import dotenv from "dotenv"
4
import type { ChromaticConfig } from "@chromatic-com/playwright"
5
import { defineConfig, devices } from "@playwright/test"
6
7
+dotenv.config({ path: path.resolve(__dirname, ".env.local") })
8
9
export default defineConfig<ChromaticConfig>({
10
testDir: "./tests/e2e",
11
outputDir: "./tests/e2e/__results__",
0 commit comments