refactor: simplify playwright config
This commit is contained in:
parent
296be0e5b2
commit
036ccfd8ef
2 changed files with 3 additions and 5 deletions
|
@ -1,5 +1,4 @@
|
|||
import { devices, PlaywrightTestConfig } from "@playwright/test"
|
||||
import path from "path"
|
||||
|
||||
const baseURL = "http://localhost:5174"
|
||||
|
||||
|
@ -9,7 +8,7 @@ const config: PlaywrightTestConfig = {
|
|||
timeout: 30 * 1000,
|
||||
|
||||
// Test directory
|
||||
testDir: path.join(__dirname, "e2e"),
|
||||
testDir: "e2e",
|
||||
|
||||
// Artifacts folder where screenshots, videos, and traces are stored.
|
||||
outputDir: "test-results/",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue