Skip to content

Commit a00a253

Browse files
CCM-9872: Fix e2e tests
1 parent f0cf3fa commit a00a253

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lambdas/backend-api/src/templates/infra/letter-file-repository.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class LetterFileRepository {
1818
versionId: string,
1919
destinationKey?: string
2020
) {
21-
this.copy(
21+
await this.copy(
2222
this.quarantineBucketName,
2323
this.internalBucketName,
2424
key,
@@ -60,7 +60,7 @@ export class LetterFileRepository {
6060
versionId: string,
6161
destinationKey: string
6262
) {
63-
this.copy(
63+
await this.copy(
6464
this.quarantineBucketName,
6565
this.downloadBucketName,
6666
key,

tests/test-team/config/e2e/e2e.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const buildCommand = [
1212

1313
export default defineConfig({
1414
...baseConfig,
15+
fullyParallel: true,
1516

1617
timeout: 60_000, // 30 seconds in the playwright default
1718
expect: {

0 commit comments

Comments
 (0)