From 5a0ae4ad2266d3c60e9d5033c2f9b5ec29a6736b Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Wed, 8 Jun 2016 15:31:03 -0700 Subject: [PATCH] Remove Long-Done TODO AFAIK, the harness sources have been concatenated into `run.js` for as long as I've known. This stops executing them twice (and in turn makes debugging tests much easier, since you no longer have to debug into eval'd code). --- src/harness/harness.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/harness/harness.ts b/src/harness/harness.ts index 5fe5b84ac9148..b17abc613a3b0 100644 --- a/src/harness/harness.ts +++ b/src/harness/harness.ts @@ -1692,6 +1692,3 @@ namespace Harness { if (Error) (Error).stackTraceLimit = 1; } - -// TODO: not sure why Utils.evalFile isn't working with this, eventually will concat it like old compiler instead of eval -eval(Harness.tcServicesFile);