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
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -110,9 +110,10 @@ Example of using `junitXml` reporter:
110
110
spec_files: ['**/*[sS]pec/.js'],
111
111
helpers: [],
112
112
reporters: {
113
-
junitXml: {
114
-
savePath:"reports",
115
-
consolidateAll:true
113
+
junitXml: {
114
+
savePath:"reports",
115
+
consolidateAll:true
116
+
}
116
117
}
117
118
}
118
119
```
@@ -178,7 +179,7 @@ Type: `boolean`
178
179
179
180
Default: `false`
180
181
181
-
Exit on failure by skipping any asyncronous tasks pending.
182
+
Exit on failure by skipping any asynchronous tasks pending.
182
183
183
184
184
185
#### options.captureExceptions
@@ -215,7 +216,7 @@ npm --versions
215
216
216
217
The `spec` reporter configuration has changed for v2 of this plugin. The following is an example of the change in configuration that is needed. This is not an exhaustive list: refer to the [jasmine-spec-reporter](https://github.com/bcaudan/jasmine-spec-reporter) for a full reference of the configuration options.
217
218
218
-
```js
219
+
```js
219
220
// v1
220
221
reporters: {
221
222
spec: {
@@ -301,10 +302,10 @@ Please note that the junit reporter is no longer available. If you are using thi
301
302
302
303
## Release History
303
304
304
-
* `unreleased`
305
+
*`v2.0.0` (2017-09-20)
305
306
-**Breaking changes alert! Ensure you read the migration guide before updating from previous versions**
306
-
- Updated to jasmine-spec-reporter v3.1.0. Older style configuration needs to be updated, see migration guide for more details.
307
-
- Removed support for Node.js v0.10
307
+
- Updated to jasmine-spec-reporter `v3.1.0`. Older style configuration needs to be updated, see migration guide for more details.
308
+
- Removed support for Node.js `v0.10`
308
309
*`v1.2.0` (2017-04-30)
309
310
- Was compatible with Grunt `0.4` all the time, hence lowering the dependency requirement #60
Copy file name to clipboardExpand all lines: package.json
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "grunt-jasmine-node-coverage",
3
3
"description": "Grunt task for running jasmine using istanbul for code coverage reports. Based off of grunt-jasmine-node by Omar Gonzalez (s9tpepper).",
0 commit comments