Skip to content

test(client-s3): use chunk size of 8 KB #6799

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/client-s3/test/e2e/S3.e2e.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ describe("@aws-sdk/client-s3", () => {
await client.deleteObject({ Bucket, Key });
});
it("should succeed with Node.js readable stream body", async () => {
const length = 10 * 1000; // 10KB
const chunkSize = 10;
const length = 100 * 1024; // 100KB
const chunkSize = 8 * 1024; // 8KB
const { Readable } = require("stream");
let sizeLeft = length;
const inputStream = new Readable({
Expand Down
Loading