From 2ec9c6baf29c4acd1d87b7e30f2e21074c7e90e7 Mon Sep 17 00:00:00 2001 From: Panayot Cankov Date: Thu, 26 May 2016 14:09:31 +0300 Subject: [PATCH] Fix TKUnit not writing --- apps/tests/TKUnit.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/tests/TKUnit.ts b/apps/tests/TKUnit.ts index 2103172fa..7a237353a 100644 --- a/apps/tests/TKUnit.ts +++ b/apps/tests/TKUnit.ts @@ -41,9 +41,7 @@ export function time(): number { export var write = function write(message: string, type?: number) { //console.log(message); - if (trace.enabled) { - trace.write(message, trace.categories.Test, type); - } + trace.write(message, trace.categories.Test, type); } var runTest = function (testInfo: TestInfoEntry) {