diff options
| author | Hank <hank@mullvad.net> | 2022-08-26 12:58:45 +0200 |
|---|---|---|
| committer | Hank <hank@mullvad.net> | 2022-09-20 11:32:56 +0200 |
| commit | 8a7445da16f9732eeba223f54cc0b04c30491614 (patch) | |
| tree | bd8de68187e81b3a23369fb25d3581b1f469add6 | |
| parent | 83d426a8930239161e1c2122ba52d7e9912d16b1 (diff) | |
| download | mullvadvpn-8a7445da16f9732eeba223f54cc0b04c30491614.tar.xz mullvadvpn-8a7445da16f9732eeba223f54cc0b04c30491614.zip | |
Add Playwright config file
| -rw-r--r-- | gui/playwright.config.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gui/playwright.config.ts b/gui/playwright.config.ts new file mode 100644 index 0000000000..5a7d8cdafd --- /dev/null +++ b/gui/playwright.config.ts @@ -0,0 +1,11 @@ +import { PlaywrightTestConfig } from '@playwright/test'; +const config: PlaywrightTestConfig = { + testDir: './e2e', + maxFailures: 2, + use: { + screenshot: 'only-on-failure', + video: 'retain-on-failure', + }, +}; + +export default config; |
