Skip to content

Commit 926e5a6

Browse files
committed
require full code coverage (for now)
1 parent 9697c73 commit 926e5a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"license": "Apache-2.0",
1515
"scripts": {
1616
"build": "bash ./scripts/md2html/build.sh",
17-
"test": "c8 vitest --watch=false"
17+
"test": "c8 --100 vitest --watch=false"
1818
},
1919
"readmeFilename": "README.md",
2020
"files": [

scripts/md2html/md2html.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ for (let l in lines) {
209209
line = line.replace('<a name="parameterAllowEmptyValue"/>','<span id="parameterAllowEmptyValue"></span>');
210210
}
211211

212-
// replace deprecated <a name="..."></a> with <span id="..."></span>
212+
// replace deprecated <a name="..."></a> with <span id="..."></span> - needed for older specs
213213
line = line.replace(/<a name="([^"]+)"><\/a>/g,'<span id="$1"></span>');
214214

215215
line = line.split('\\|').join('&#124;'); // was &brvbar

0 commit comments

Comments
 (0)