Skip to content

Commit

Permalink
test(nestjs-tools-file-storage): increase delay
Browse files Browse the repository at this point in the history
  • Loading branch information
getlarge committed Aug 7, 2024
1 parent e78b1c1 commit 1db2183
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/file-storage/test/file-storage-google.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ describe(description, () => {
const content = randomBytes(1024);
await fileStorage.uploadFile({ filePath, content });
await fileStorage.uploadFile({ filePath: nestedFilePath, content });
await delay(1000);
await delay(1500);
//
const result = await fileStorage.readDir({ dirPath });
//
Expand Down
2 changes: 1 addition & 1 deletion packages/file-storage/test/file-storage-s3.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ describe(description, () => {
const content = randomBytes(1024);
await fileStorage.uploadFile({ filePath, content });
await fileStorage.uploadFile({ filePath: nestedFilePath, content });
await delay(1000);
await delay(1500);
//
const result = await fileStorage.readDir({ dirPath });
//
Expand Down

0 comments on commit 1db2183

Please sign in to comment.