Skip to content

Commit 4bb566a

Browse files
committed
CCM-12875: wait a little longer for one of the component test assertions
1 parent 096461a commit 4bb566a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ test.describe('Digital Letters - Upload to PDM', () => {
111111

112112
test('should send invalid event to dlq', async () => {
113113
// Sadly it takes longer than expected to go through the 3 retries before it's sent to the DLQ.
114-
test.setTimeout(480_000);
114+
test.setTimeout(500_000);
115115

116116
const eventId = uuidv4();
117117
const messageUri = `not-a-valid-s3-uri`;
@@ -144,7 +144,7 @@ test.describe('Digital Letters - Upload to PDM', () => {
144144
);
145145

146146
expect(eventLogEntry.length).toEqual(1);
147-
});
147+
}, 60);
148148

149149
await expectMessageContainingString(PDM_UPLOADER_DLQ_NAME, eventId, 420);
150150
});

0 commit comments

Comments
 (0)