Skip to content

Commit

Permalink
9.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle committed Jun 11, 2024
1 parent 60d05ac commit f43a848
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v9.1.0:
date: 2024-06-11
changes:
- Re-introduce `qunit.log` Grunt event.

v9.0.0:
date: 2024-06-09
changes:
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ When true, the whole task will not fail when there are individual test failures,
Type: `boolean`
Default: `false`

When true, this will suppress the default logging for individually failed tests. Customized logging can be performed by listening to and responding to `qunit.log` events.
When true, this will suppress the default logging for individually failed tests. Customized logging can be performed by listening to `qunit.on.testEnd` events.

#### puppeteer
Type: `Object`
Expand Down Expand Up @@ -246,6 +246,7 @@ QUnit events are forwarded to Grunt's event system, enabling you to build custom
* `qunit.on.runEnd` `(obj)`

* `qunit.begin`
* `qunit.log` `(obj)`
* `qunit.done`

In addition to forwarding QUnit's events, the following events are also emitted by the Grunt plugin:
Expand Down Expand Up @@ -274,6 +275,7 @@ grunt.event.on('qunit.on.testEnd', function (test) {

## Release History

* 2024-06-11   v9.1.0   Re-introduce `qunit.log` Grunt event.
* 2024-06-09   v9.0.0   Update to Puppeteer 22. Require Node.js 18 or later. Remove [details parameter](https://qunitjs.com/api/callbacks/QUnit.done/) to Grunt event `qunit.done`, deprecated since QUnit 2.2. Remove Grunt events `qunit.testStart`, `qunit.log`, `qunit.testDone`, `qunit.moduleStart`, `qunit.moduleDone`. Use `qunit.on.*` instead.
* 2023-09-16   v8.0.1   Add stack trace to uncaught errors.
* 2023-09-04   v8.0.0   Update to Puppeteer 21 (switch to "Chrome for Testing", and "new" Headless mode). Require Node.js 16 or later.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-contrib-qunit",
"description": "Run QUnit unit tests in a headless Chrome instance",
"version": "9.0.0",
"version": "9.1.0",
"author": {
"name": "Grunt Team",
"url": "https://gruntjs.com/"
Expand Down

0 comments on commit f43a848

Please sign in to comment.