-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Playwright for firefox and webkit (#160)
* i try fix * Fix popover compat issue * Remove global config * Fix lint * remove unused * Fixed typos * Skipping popover dependent tests in firefox and webkit * Attempt to fix flaky fill * Attempt to fix other flaky tests Co-Authored-By: Nyby <[email protected]> * Disabling concurrent tests Co-Authored-By: Nyby <[email protected]> * Removed comment Co-Authored-By: Nyby <[email protected]> --------- Co-authored-by: Anton <[email protected]> Co-authored-by: BaBrixx <[email protected]> Co-authored-by: Bastian Brix <[email protected]> Co-authored-by: Nyby <[email protected]> Co-authored-by: Nyby <[email protected]>
- Loading branch information
1 parent
decb3e0
commit 7a2e059
Showing
14 changed files
with
217 additions
and
71 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,29 @@ | ||
import type { PlaywrightTestConfig } from "@playwright/test"; | ||
import { devices } from "@playwright/test"; | ||
|
||
const config: PlaywrightTestConfig = { | ||
workers: 1, | ||
webServer: { | ||
command: "yarn build && yarn preview", | ||
port: 4173, | ||
timeout: 10 * 60 * 1000, | ||
}, | ||
testDir: "tests", | ||
testMatch: /(.+\.)?(test|spec)\.[jt]s/, | ||
projects: [ | ||
{ | ||
name: "chromium", | ||
use: { ...devices["Desktop Chrome"] }, | ||
}, | ||
{ | ||
name: "firefox", | ||
use: { ...devices["Desktop Firefox"] }, | ||
}, | ||
{ | ||
name: "webkit", | ||
use: { ...devices["Desktop Safari"] }, | ||
}, | ||
], | ||
}; | ||
|
||
export default config; |
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
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
Oops, something went wrong.