8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ee8d8c commit 73fb8a0Copy full SHA for 73fb8a0
src/harness/rwcRunner.ts
@@ -190,8 +190,9 @@ namespace RWC {
190
if (compilerResult.errors.length === 0) {
191
return null;
192
}
193
-
194
- return Harness.Compiler.getErrorBaseline(inputFiles.concat(otherFiles), compilerResult.errors);
+ // Do not include the library in the baselines to avoid noise
+ const baselineFiles = inputFiles.concat(otherFiles).filter(f => !Harness.isDefaultLibraryFile(f.unitName));
195
+ return Harness.Compiler.getErrorBaseline(baselineFiles, compilerResult.errors);
196
}, false, baselineOpts);
197
});
198
0 commit comments