feat(testing): Added ERD test and cleanups

This commit is contained in:
Muhammed Mustafa
2022-10-19 10:38:31 +05:30
parent 50e88aa594
commit 20144f4240
19 changed files with 673 additions and 57 deletions

View File

@@ -26,10 +26,11 @@ const config: PlaywrightTestConfig = {
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: 2,
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 2 : 4,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */