From c255216f28e5249d66e2a8d01c2fe6dd97836735 Mon Sep 17 00:00:00 2001 From: Anatoly Date: Mon, 24 Sep 2018 02:00:16 +0300 Subject: [PATCH] migrating to typescript --- test/TestModules/TestSchemaProcessor.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/TestModules/TestSchemaProcessor.ts b/test/TestModules/TestSchemaProcessor.ts index 92cec53..a626d22 100644 --- a/test/TestModules/TestSchemaProcessor.ts +++ b/test/TestModules/TestSchemaProcessor.ts @@ -265,14 +265,14 @@ export default class TestSchemaProcessor { this.conversion._runsInTestMode = true; this.conversion._eventEmitter = new EventEmitter(); this.dbAccess = new DBAccess(this.conversion); - const connectionErrorMessage = await checkConnection(this.conversion, this.dbAccess); const logo: string = getLogo(); console.log(logo); + /* const connectionErrorMessage = await checkConnection(this.conversion, this.dbAccess); if (connectionErrorMessage) { console.log(connectionErrorMessage); - // process.exit(); - } + process.exit(); + } */ delete this.conversion._sourceConString.database; return this.conversion;