From 5e11312143857c366d689685c226bc87d2f2a569 Mon Sep 17 00:00:00 2001 From: Michael Taylor Date: Sat, 12 Mar 2022 20:26:53 -0500 Subject: [PATCH] refactor: remove console.log --- tests/test-fixtures/staging-fixtures.js | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test-fixtures/staging-fixtures.js b/tests/test-fixtures/staging-fixtures.js index 8cadb15c..e115e7d1 100644 --- a/tests/test-fixtures/staging-fixtures.js +++ b/tests/test-fixtures/staging-fixtures.js @@ -14,7 +14,6 @@ export const resetStagingTable = async () => { export const getLastCreatedStagingRecord = async () => { const result = await supertest(app).get('/v1/staging'); - console.log('!!!!!!', result.body); expect(result.body).to.be.an('array'); return _.last(result.body); };