Skip to content

Commit 6b9d9cd

Browse files
committed
CCM-13476: run component tests parallel
1 parent e3b355c commit 6b9d9cd

4 files changed

Lines changed: 1 addition & 7 deletions

File tree

tests/playwright/config/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import path from 'node:path';
33

44
export default defineConfig({
55
testDir: path.resolve(__dirname, '../'),
6-
fullyParallel: false,
6+
fullyParallel: true,
77
/* Fail the build on CI if you accidentally left test.only in the source code. */
88
forbidOnly: !!process.env.CI,
99
retries: 0,

tests/playwright/digital-letters-component-tests/pdm-poll.component.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ const unavailableEvent = {
4040
'https://notify.nhs.uk/cloudevents/schemas/digital-letters/2025-10-draft/data/digital-letters-pdm-resource-unavailable-data.schema.json',
4141
};
4242

43-
test.describe.configure({ mode: 'parallel' });
44-
4543
test.describe('PDM Poll', () => {
4644
test.beforeAll(async () => {
4745
test.setTimeout(250_000);

tests/playwright/digital-letters-component-tests/pdm-uploader.component.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ const baseEvent = {
5050
severitytext: 'INFO',
5151
};
5252

53-
test.describe.configure({ mode: 'parallel' });
54-
5553
test.describe('Digital Letters - Upload to PDM', () => {
5654
test.beforeAll(async () => {
5755
await purgeQueue(PDM_UPLOADER_DLQ_NAME);

tests/playwright/digital-letters-component-tests/print-status-handler.component.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ const letterStatuses = [
5252
'DELIVERED',
5353
] as const;
5454

55-
test.describe.configure({ mode: 'parallel' });
56-
5755
test.describe('Print status handler', () => {
5856
test.beforeAll(async () => {
5957
test.setTimeout(150_000);

0 commit comments

Comments
 (0)