From e7e6c965fa477a34a926a26f481b773516fed18c Mon Sep 17 00:00:00 2001 From: ingalls Date: Thu, 31 Aug 2023 13:45:40 -0600 Subject: [PATCH] Fix Tests --- ingest-zip/test/basic.test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ingest-zip/test/basic.test.js b/ingest-zip/test/basic.test.js index 7fc6c18..27d3e80 100644 --- a/ingest-zip/test/basic.test.js +++ b/ingest-zip/test/basic.test.js @@ -21,6 +21,10 @@ test('Basic', async (t) => { path: '/', method: 'POST' }).reply(200, { message: 'posted' }); + mockPool.intercept({ + path: '/', + method: 'POST' + }).reply(200, { message: 'posted' }); const order = []; Sinon.stub(SSM.SSMClient.prototype, 'send').callsFake((command) => {