Made parameter mandatory, check type baselines again even in light mode.

This commit is contained in:
Daniel Rosenwasser 2015-04-29 17:54:15 -07:00
parent eb15bb3658
commit e90849d643

View File

@ -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;
}