Przeglądaj źródła

use parallel workers in ci

Jonathan Kelley 4 miesięcy temu
rodzic
commit
c9a6c3a17e
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      packages/playwright-tests/playwright.config.js

+ 1 - 1
packages/playwright-tests/playwright.config.js

@@ -20,7 +20,7 @@ module.exports = defineConfig({
   /* Retry on CI only */
   retries: process.env.CI ? 2 : 0,
   /* Opt out of parallel tests on CI. */
-  workers: process.env.CI ? 1 : undefined,
+  // workers: process.env.CI ? 1 : undefined,
   /* 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. */