Skip to content

Commit 879000e

Browse files
committed
feat: addressed pr comments
1 parent c4bf56a commit 879000e

File tree

4 files changed

+226
-270
lines changed

4 files changed

+226
-270
lines changed

lib/lib-storage/src/s3-transfer-manager/S3TransferManager.e2e.spec.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,13 @@ describe(S3TransferManager.name, () => {
3131
let region: string;
3232

3333
beforeAll(async () => {
34-
// TODO: replace hard coded region and bucket with integration test resources.
3534
const integTestResourcesEnv = await getIntegTestResources();
3635
Object.assign(process.env, integTestResourcesEnv);
3736

3837
region = process?.env?.AWS_SMOKE_TEST_REGION as string;
3938
Bucket = process?.env?.AWS_SMOKE_TEST_BUCKET as string;
4039
void getIntegTestResources;
4140

42-
// region = "us-west-2";
43-
// Bucket = "lukachad-us-west-2";
44-
4541
client = new S3({
4642
region,
4743
});
@@ -96,7 +92,6 @@ describe(S3TransferManager.name, () => {
9692
bytesTransferred: [
9793
({ request, snapshot }) => {
9894
bytesTransferred = snapshot.transferredBytes;
99-
// console.log(bytesTransferred);
10095
},
10196
],
10297
},

0 commit comments

Comments
 (0)