From 20ff3c0e232f753e54bcdb70809483e427e76c37 Mon Sep 17 00:00:00 2001
From: Bastien DUMONT <bdumont@grandlyon.com>
Date: Mon, 22 Aug 2022 11:18:40 +0200
Subject: [PATCH] remove console.log

---
 .gitlab-ci.yml                   | 2 +-
 src/core/contractVerification.js | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1298966..cd98c30 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -40,7 +40,7 @@ unit-test:
     - apk add bash
   script:
     - yarn
-    - yarn test --ci --reporters=default --reporters=jest-junit
+    - yarn test --ci --reporters=default --reporters=jest-junit --coverage
   coverage: "/All files[^|]*\\|[^|]*\\s+([\\d\\.]+)/"
   artifacts:
     when: always
diff --git a/src/core/contractVerification.js b/src/core/contractVerification.js
index c53cf4e..6216819 100644
--- a/src/core/contractVerification.js
+++ b/src/core/contractVerification.js
@@ -54,7 +54,6 @@ async function verifyContract(url, apiAuthKey, appLogin, contractId, pointId) {
     } else {
       currentContract = parseContracts(parsedReply)
     }
-    console.log(currentContract)
     if (
       (currentContract.etatCode === contractState.ACTIF ||
         currentContract.etatCode === contractState.DEMANDE) &&
-- 
GitLab