From 5a70362b7922b12fb87b692ac9cafe5398fe4aa1 Mon Sep 17 00:00:00 2001 From: Mathieu Lecarme Date: Fri, 8 Nov 2019 18:11:26 +0100 Subject: [PATCH] Fix: AWS.config is a stub. --- test/backend/s3-tests.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/backend/s3-tests.js b/test/backend/s3-tests.js index 997b7c34..9e6642fd 100644 --- a/test/backend/s3-tests.js +++ b/test/backend/s3-tests.js @@ -22,6 +22,9 @@ const s3Stub = { }; const awsStub = { + config: { + update: sinon.stub() + }, S3: function() { return s3Stub; }