(path)
| 12 | const sourceMapSpecTests = require("./source-map-tests/source-map-spec-tests.json"); |
| 13 | |
| 14 | async function readJSON(path) { |
| 15 | const file = await fs.open(require.resolve(path)); |
| 16 | const json = JSON.parse(await file.readFile()); |
| 17 | file.close(); |
| 18 | return json; |
| 19 | } |
| 20 | |
| 21 | // Known failures due to intentional implementation choices or due to bugs. |
| 22 | const skippedTests = [ |
no outgoing calls
no test coverage detected
searching dependent graphs…