(aSourceMapPath)
| 480 | }; |
| 481 | |
| 482 | const actualMap = function (aSourceMapPath) { |
| 483 | const map = SourceMapGenerator.fromSourceMap(minifiedMap); |
| 484 | // Note that relying on `bundleMap.file` (which is simply 'bundle.js') |
| 485 | // instead of supplying the second parameter wouldn't work here. |
| 486 | map.applySourceMap(bundleMap, "../temp/bundle.js", aSourceMapPath); |
| 487 | return map.toJSON(); |
| 488 | }; |
| 489 | |
| 490 | util.assertEqualMaps( |
| 491 | assert, |
no test coverage detected