You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ http://github.com/jquery/qunit
8
8
9
9
- cli
10
10
- testrunner api
11
-
- test coverage via jscoverage is removed, node-bunker have to be implemented #26
11
+
- test coverage via instanbul
12
12
- tests inside of one testfile run synchronous, but every testfile runs parallel
13
13
- tests from each file run in its own spawned node process
14
14
- same API for client and server side code (original QUnit is used)
@@ -71,6 +71,12 @@ variable name to be used for the namespace object, followed by a colon:
71
71
// log global summary (all files)
72
72
globalSummary: true,
73
73
74
+
// log coverage
75
+
coverage: true,
76
+
77
+
// log global coverage (all files)
78
+
globalCoverage: true,
79
+
74
80
// log currently testing code file
75
81
testing: true
76
82
},
@@ -233,4 +239,4 @@ Some tests examples
233
239
234
240
### Coverage
235
241
236
-
Code coverage via Istanbul. To utilize, install `istanbul` and set `coverage: true`. Coverage based on code and tests passed to `node-qunit`.
242
+
Code coverage via Istanbul. To utilize, install `istanbul` and set `coverage: true`. Coverage calculations based on code and tests passed to `node-qunit`.
0 commit comments