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 3d5f692 commit 412ef61Copy full SHA for 412ef61
src/harness/rwcRunner.ts
@@ -138,6 +138,14 @@ module RWC {
138
}, false, baselineOpts);
139
});
140
141
+ it('has correct source map record', () => {
142
+ if (compilerResult.sourceMapRecord) {
143
+ Harness.Baseline.runBaseline('has correct source map record', baseName + '.sourcemap.txt', () => {
144
+ return compilerResult.sourceMapRecord;
145
+ }, false, baselineOpts);
146
+ }
147
+ });
148
+
149
it('has the expected errors', () => {
150
Harness.Baseline.runBaseline('has the expected errors', baseName + '.errors.txt', () => {
151
if (compilerResult.errors.length === 0) {
0 commit comments