Setup docker to produce visual regression tests for linux on non-linux hosts

This commit is contained in:
Aria Minaei 2023-08-07 15:20:45 +02:00
parent 654f5d60a3
commit 546a71d24f
6 changed files with 112 additions and 7 deletions

View file

@ -19,11 +19,8 @@ const config: PlaywrightTestConfig = {
/* Maximum time one test can run for. */
timeout: 4000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
timeout: 1000,
// maximum timeout for expect assertions. If longer than the test timeout above, it'll still fail.
timeout: 10000,
},
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,