Skip to content

Commit

Permalink
test(client-s3): skip putObject blob body in browser (#6801)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr authored Jan 15, 2025
1 parent 08cad71 commit e1dff72
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion clients/client-s3/test/e2e/S3.browser.e2e.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@ describe("@aws-sdk/client-s3", () => {

const buf = createBuffer("1KB");

it("should succeed with blob body", async () => {
// TODO(vitest)
// Caused by: readableStream.on is not a function
// only in vitest + happy-dom.
it.skip("should succeed with blob body", async () => {
onTestFailed(setTestFailed);
const blob = new Blob([buf]);
const result = await client.putObject({
Expand Down

0 comments on commit e1dff72

Please sign in to comment.