We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6068c8 commit c1a4254Copy full SHA for c1a4254
clients/client-s3/test/e2e/S3.e2e.spec.ts
@@ -35,8 +35,8 @@ describe("@aws-sdk/client-s3", () => {
35
await client.deleteObject({ Bucket, Key });
36
});
37
it("should succeed with Node.js readable stream body", async () => {
38
- const length = 10 * 1000; // 10KB
39
- const chunkSize = 10;
+ const length = 100 * 1024; // 100KB
+ const chunkSize = 8 * 1024; // 8KB
40
const { Readable } = require("stream");
41
let sizeLeft = length;
42
const inputStream = new Readable({
0 commit comments