Browse Source

Fix: AWS.config is a stub.

Mathieu Lecarme 5 years ago
parent
commit
5a70362b79
1 changed files with 3 additions and 0 deletions
  1. 3 0
      test/backend/s3-tests.js

+ 3 - 0
test/backend/s3-tests.js

@@ -22,6 +22,9 @@ const s3Stub = {
 };
 
 const awsStub = {
+  config: {
+    update: sinon.stub()
+  },
   S3: function() {
     return s3Stub;
   }