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.
2 parents edc3ed3 + 445cb79 commit 6e812e5Copy full SHA for 6e812e5
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