We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6c7a1d commit b7fa73bCopy full SHA for b7fa73b
1 file changed
apps/cms-e2e/playwright.config.cts
@@ -18,6 +18,9 @@ const baseURL = process.env['BASE_URL'] || 'http://localhost:3000';
18
19
export default defineConfig({
20
...nxE2EPreset(__dirname, { testDir: './src' }),
21
+ // Admin tests drive the Payload UI and are prone to timing flakiness.
22
+ // Permission and API tests are deterministic and always run in CI.
23
+ testIgnore: process.env['CI'] ? ['**/admin/**'] : [],
24
globalSetup: require.resolve('./global-setup.cts'),
25
globalTeardown: require.resolve('./global-teardown.cts'),
26
// Ensure tests run serially to avoid
0 commit comments