We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb15bb3 commit e90849dCopy full SHA for e90849d
1 file changed
src/harness/compilerRunner.ts
@@ -18,7 +18,7 @@ class CompilerBaselineRunner extends RunnerBase {
18
19
public options: string;
20
21
- constructor(public testType?: CompilerTestType) {
+ constructor(public testType: CompilerTestType) {
22
super();
23
this.errors = true;
24
this.emit = true;
@@ -258,7 +258,7 @@ class CompilerBaselineRunner extends RunnerBase {
258
});
259
260
it('Correct type/symbol baselines for ' + fileName, () => {
261
- if (fileName.indexOf("APISample") >= 0 || lightMode) {
+ if (fileName.indexOf("APISample") >= 0) {
262
return;
263
}
264
0 commit comments