Skip to content

Commit

Permalink
test(gatsby-cli): update active NodeJS version (#20346)
Browse files Browse the repository at this point in the history
* test(gatsby-cli): drop test for Node.js 11 which is EOF

* test(gatsby-cli): add test for NodeJS 13 which is current version
  • Loading branch information
shisama authored and pvdz committed Jan 6, 2020
1 parent 74cd158 commit 47d2a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gatsby-cli/src/__tests__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ describe(`error handling`, () => {

describe(`normal behavior`, () => {
it(`does not panic on Node >= 8.0.0`, () => {
;[`8.0.0`, `8.9.0`, `10.0.0`, `11.0.0`, `12.0.0`].forEach(version => {
;[`8.0.0`, `8.9.0`, `10.0.0`, `12.0.0`, `13.0.0`].forEach(version => {
const { reporter } = setup(version)

expect(reporter.panic).not.toHaveBeenCalled()
Expand Down

0 comments on commit 47d2a8d

Please sign in to comment.