From 9970bb2c38f9384cea56f99cf5252ea3201b9234 Mon Sep 17 00:00:00 2001 From: Joan Sanchez Date: Tue, 16 Jun 2020 13:20:18 +0200 Subject: [PATCH] Debug logs --- gulpfile.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 678fda527..6cf75e3fc 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -83,6 +83,8 @@ async function backTestOnce(done) { port: container.dbConf.port }); + log('[Debug] dataSources', dataSources.vn); + let bootOptions = {dataSources}; let app = require(`./loopback/server/server`); @@ -90,6 +92,8 @@ async function backTestOnce(done) { try { app.boot(bootOptions); + log('[Debug] back started'); + await new Promise((resolve, reject) => { const jasmine = require('gulp-jasmine');