From e90849d64366eeb8fee45f5d180b877e042d21fb Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Wed, 29 Apr 2015 17:54:15 -0700 Subject: [PATCH] Made parameter mandatory, check type baselines again even in light mode. --- src/harness/compilerRunner.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/harness/compilerRunner.ts b/src/harness/compilerRunner.ts index 11822e2fec5..293b88c65ef 100644 --- a/src/harness/compilerRunner.ts +++ b/src/harness/compilerRunner.ts @@ -18,7 +18,7 @@ class CompilerBaselineRunner extends RunnerBase { public options: string; - constructor(public testType?: CompilerTestType) { + constructor(public testType: CompilerTestType) { super(); this.errors = true; this.emit = true; @@ -258,7 +258,7 @@ class CompilerBaselineRunner extends RunnerBase { }); it('Correct type/symbol baselines for ' + fileName, () => { - if (fileName.indexOf("APISample") >= 0 || lightMode) { + if (fileName.indexOf("APISample") >= 0) { return; }