-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Playwright + Native Node Test Runner (#3893)
- Loading branch information
Showing
23 changed files
with
5,753 additions
and
9,215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import { defineConfig, devices } from "@playwright/test"; | ||
|
||
const port = 30001; | ||
const url = `http://localhost:${port}`; | ||
|
||
export default defineConfig({ | ||
// Look for test files in the "tests" directory, relative to this configuration file. | ||
testDir: "../test/e2e", | ||
outputDir: "../private/playwright-test-results", | ||
fullyParallel: false, | ||
locale: "en-US", | ||
|
||
// Fail the build on CI if you accidentally left test.only in the source code. | ||
forbidOnly: !!process.env.CI, | ||
|
||
// Retry on CI only. | ||
retries: process.env.CI ? 2 : 0, | ||
|
||
// Opt out of parallel tests on CI. | ||
workers: 1, | ||
|
||
// Reporter to use | ||
reporter: [ | ||
[ | ||
"html", { | ||
outputFolder: "../private/playwright-report", | ||
open: "never", | ||
} | ||
], | ||
], | ||
|
||
use: { | ||
// Base URL to use in actions like `await page.goto('/')`. | ||
baseURL: url, | ||
|
||
// Collect trace when retrying the failed test. | ||
trace: "on-first-retry", | ||
}, | ||
|
||
// Configure projects for major browsers. | ||
projects: [ | ||
{ | ||
name: "chromium", | ||
use: { ...devices["Desktop Chrome"] }, | ||
}, | ||
/* | ||
{ | ||
name: "firefox", | ||
use: { browserName: "firefox" } | ||
},*/ | ||
], | ||
|
||
// Run your local dev server before starting the tests. | ||
webServer: { | ||
command: `node extra/remove-playwright-test-data.js && node server/server.js --port=${port} --data-dir=./data/playwright-test`, | ||
url, | ||
reuseExistingServer: false, | ||
cwd: "../", | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
const fs = require("fs"); | ||
|
||
fs.rmSync("./data/playwright-test", { | ||
recursive: true, | ||
force: true, | ||
}); |
Oops, something went wrong.