Skip to content

Commit e90849d

Browse files
Made parameter mandatory, check type baselines again even in light mode.
1 parent eb15bb3 commit e90849d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/harness/compilerRunner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class CompilerBaselineRunner extends RunnerBase {
1818

1919
public options: string;
2020

21-
constructor(public testType?: CompilerTestType) {
21+
constructor(public testType: CompilerTestType) {
2222
super();
2323
this.errors = true;
2424
this.emit = true;
@@ -258,7 +258,7 @@ class CompilerBaselineRunner extends RunnerBase {
258258
});
259259

260260
it('Correct type/symbol baselines for ' + fileName, () => {
261-
if (fileName.indexOf("APISample") >= 0 || lightMode) {
261+
if (fileName.indexOf("APISample") >= 0) {
262262
return;
263263
}
264264

0 commit comments

Comments
 (0)