diff --git a/grafana-plugin/e2e-tests/schedules/timezones.test.ts b/grafana-plugin/e2e-tests/schedules/timezones.test.ts index 1bac2e3b..e20b77b0 100644 --- a/grafana-plugin/e2e-tests/schedules/timezones.test.ts +++ b/grafana-plugin/e2e-tests/schedules/timezones.test.ts @@ -14,7 +14,8 @@ dayjs.extend(isoWeek); test.use({ timezoneId: MOSCOW_TIMEZONE }); // GMT+3 the whole year -test('dates in schedule are correct according to selected current timezone', async ({ adminRolePage }) => { +// The test is skipped because using Clock API breaks several other tests that run in parallel +test.skip('dates in schedule are correct according to selected current timezone', async ({ adminRolePage }) => { const { page, userName } = adminRolePage; /** diff --git a/grafana-plugin/playwright.config.ts b/grafana-plugin/playwright.config.ts index c345c682..41f1e259 100644 --- a/grafana-plugin/playwright.config.ts +++ b/grafana-plugin/playwright.config.ts @@ -53,9 +53,7 @@ export default defineConfig({ * to flaky tests.. let's allow 1 retry per test */ retries: 1, - workers: '25%', // 25% of logical CPU cores, e.g. for 16 CPU cores it will use 4 workers - /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - // reporter: 'html', + workers: 4, /* 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). */