Skip to content

Commit 0e24136

Browse files
committed
10.2.0
1 parent 9af8620 commit 0e24136

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v10.2.0:
2+
- date: 2026-04-15
3+
- changes:
4+
- Update from Puppeteer 22 (Chrome 127) to Puppeteer 24 (Chrome 147).
5+
- Fix `url.parse()` deprecation warning on Node.js 24.
6+
- Increase default timeout from 5s to 10s (it seems Chrome launch times got more spotty, at least via GitHub Actions).
7+
18
## v10.1.1:
29
- date: 2024-07-18
310
- changes:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# grunt-contrib-qunit v10.1.1 [![Build Status](https://github.com/gruntjs/grunt-contrib-qunit/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-contrib-qunit/actions?workflow=Tests)
1+
# grunt-contrib-qunit v10.2.0 [![Build Status](https://github.com/gruntjs/grunt-contrib-qunit/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-contrib-qunit/actions?workflow=Tests)
22

33
> Run QUnit unit tests in a headless Chrome instance
44
@@ -276,6 +276,7 @@ grunt.event.on('qunit.on.testEnd', function (test) {
276276

277277
## Release History
278278

279+
* 2026-04-15   v10.2.0   Update from Puppeteer 22 (Chrome 127) to Puppeteer 24 (147).
279280
* 2024-07-18   v10.1.1   Fix formatting of non-string errors from `QUnit.on('error')` events.
280281
* 2024-07-18   v10.1.0   Include errors from `QUnit.on('error')` in the output.
281282
* 2024-06-18   v10.0.0   Require QUnit 2.17 or later. Remove support for delaying qunit.js via RequireJS. AMD continues to be supported for loading source code and tests, but load qunit.js in its own script before RequireJS, and reference QUnit directly. Examples on [qunitjs.com](https://qunitjs.com/api/config/autostart/).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-contrib-qunit",
33
"description": "Run QUnit unit tests in a headless Chrome instance",
4-
"version": "10.1.1",
4+
"version": "10.2.0",
55
"author": {
66
"name": "Grunt Team",
77
"url": "https://gruntjs.com/"

tasks/qunit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ module.exports = function(grunt) {
261261
// Merge task-specific and/or target-specific options with these defaults.
262262
options = this.options({
263263
// Default Chrome timeout.
264-
timeout: 5000,
264+
timeout: 10000,
265265
// QUnit-Chrome bridge file to be injected.
266266
inject: asset('chrome/bridge.js'),
267267
// Explicit non-file URLs to test.

0 commit comments

Comments
 (0)