You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Defaults to half the number of CPUs. The tests are not really CPU-bound but rather I/O-bound with all the polling we do so we increase the concurrency to the CPU count. */
34
-
workers: 1,
34
+
workers: os.cpus().length,
35
35
/* Run tests in files in parallel */
36
-
fullyParallel: false,
36
+
fullyParallel: true,
37
37
/* Fail the build on CI if you accidentally left test.only in the source code. */
38
38
forbidOnly: !!process.env.CI,
39
39
/* `next dev` is incredibly buggy with the app dir */
0 commit comments