Skip to content

Commit

Permalink
chore(middleware-sdk-s3): fix integ test (#5224)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhe committed Sep 15, 2023
1 parent db97698 commit 61d5e22
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,12 @@ describe("middleware-sdk-s3", () => {
it("warns on input streams of unknown length", async () => {
const client = new S3({
region: "us-west-2",
logger: Object.assign(new NoOpLogger(), {
logger: Object.assign({
trace: jest.fn(),
debug: jest.fn(),
info: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
}),
});

Expand Down

0 comments on commit 61d5e22

Please sign in to comment.