diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-09-30 09:25:27 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-09-30 09:33:21 -0300 |
commit | b6dad614959a64f742fe6471b622d3fcc784b725 (patch) | |
tree | 8e257fa5d666fd647754530b03bd35443fb9688f /coverage-map.js | |
parent | 8ed9240b56d61be97a5cc1da7c9fcb179bb58a93 (diff) |
update to node-tap 18.4.0
Diffstat (limited to 'coverage-map.js')
-rw-r--r-- | coverage-map.js | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/coverage-map.js b/coverage-map.js new file mode 100644 index 00000000..0ed9d60a --- /dev/null +++ b/coverage-map.js @@ -0,0 +1,56 @@ +// node-tap test -> src coverage map +// https://node-tap.org/coverage/ + +export default function map(F) { + let match; + + // unit/content/... + + match = F.match(/^test\/unit\/content\/(.*)$/); + if (match) { + const f = match[1]; + + match = f.match(/^dependencies\/(.*)\.js$/); + if (match) { + return `src/content/dependencies/${match[1]}.js`; + } + } + + // unit/data/... + + match = F.match(/^test\/unit\/data\/(.*)$/); + if (match) { + const f = match[1]; + + match = f.match(/^things\/(.*)\.js$/); + if (match) { + return `src/data/things/${match[1]}.js`; + } + } + + // unit/util/... + + match = F.match(/^test\/unit\/util\/(.*)$/); + if (match) { + const f = match[1]; + + switch (f) { + case 'html.js': + return 'src/util/html.js'; + } + } + + // snapshot/... + + match = F.match(/^test\/snapshot\/(.*)$/); + if (match) { + const f = match[1]; + + match = f.match(/^(.*)\.js$/); + if (match) { + return `src/content/dependencies/${match[1]}.js`; + } + } + + return null; +} |