Skip to content

Commit

Permalink
Merge pull request #352 from gruntjs/vlad-upt-internal
Browse files Browse the repository at this point in the history
Update internal
  • Loading branch information
vladikoff authored Jan 13, 2023
2 parents f6703b8 + 2a41a23 commit c33c870
Show file tree
Hide file tree
Showing 16 changed files with 8,943 additions and 311 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Tests

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

env:
FORCE_COLOR: 2
Expand All @@ -13,15 +13,17 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [10, 12, 14]
node: [14, 16, 18]
os: [ubuntu-latest, windows-latest]

steps:
- name: Clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
v4.0.0:
date: 2023-01-12
changes:
- Dependency Updates
- requires node 14+
- requires jasmine 3.9.0+
- bump puppeteer to version 19
v3.0.0:
date: 2021-05-13
changes:
Expand Down
14 changes: 4 additions & 10 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = function(grunt) {
junit: {
path: 'junit'
},
display: 'full'
display: 'full',
}
},
consoleDisplayOptions: {
Expand Down Expand Up @@ -124,16 +124,10 @@ module.exports = function(grunt) {
tempDir: '.custom/'
}
},
version25: {
version39: {
options: {
specs: 'test/fixtures/versions/spec/SpecVersion25.js',
version: '2.5.2'
}
},
version31: {
options: {
specs: 'test/fixtures/versions/spec/SpecVersion31.js',
version: '3.1.0',
specs: 'test/fixtures/versions/spec/SpecVersion39.js',
version: '3.9.0',
summary: true
}
}
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# grunt-contrib-jasmine v2.2.0 [![Build Status](https://github.com/gruntjs/grunt-contrib-jasmine/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-contrib-jasmine/actions?workflow=Tests)
# grunt-contrib-jasmine v3.0.0 [![Build Status](https://github.com/gruntjs/grunt-contrib-jasmine/workflows/Tests/badge.svg)](https://github.com/gruntjs/grunt-contrib-jasmine/actions?workflow=Tests)

> Run jasmine specs headlessly through Headless Chrome
Expand Down Expand Up @@ -187,7 +187,7 @@ Example `sandboxArgs` object:
args: {
'=-allow-file-access-from-files'
},
executablePath: '/some/other/path/to/chrome'
executeablePath: '/some/other/path/to/chrome'
}
```

Expand Down Expand Up @@ -372,6 +372,7 @@ grunt.initConfig({

## Release History

* 2023-01-12   v4.0.0   Dependency Updates requires node 14+ requires jasmine 3.9.0+ bump puppeteer to version 19
* 2021-05-13   v3.0.0   Dependency Updates drop node 8 support bump puppeteer to 8.0.0
* 2020-05-04   v2.2.0   Dependency updates set the default option timeout value to 30 secs to sync with puppeteer's default timeout value. options.sandboxArgs; passing options to puppeteer
* 2019-07-31   v2.1.3   Fix security deps Update Puppeteer
Expand Down Expand Up @@ -414,4 +415,4 @@ grunt.initConfig({

Task submitted by [Jarrod Overson](http://jarrodoverson.com)

*This file was generated on Thu May 13 2021 10:47:51.*
*This is a generated file.*
Loading

0 comments on commit c33c870

Please sign in to comment.