Skip to content

Commit 0b8dc2c

Browse files
feat: add support for node 6
1 parent 08242a0 commit 0b8dc2c

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ language: node_js
33
node_js:
44
- "0.10"
55
- "0.12"
6-
- "4"
7-
- "5"
6+
- 4
7+
- 5
8+
- 6
89

910
env:
1011
global:

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ environment:
55
- nodejs_version: "0.12"
66
- nodejs_version: "4"
77
- nodejs_version: "5"
8+
- nodejs_version: "6"
89

910
matrix:
1011
fast_finish: true

docs/intro/01-installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Karma runs on [Node.js] and is available as an [NPM] package.
55
On Mac or Linux we recommend using [NVM](https://github.com/creationix/nvm). On Windows, download Node.js
66
from [the official site](https://nodejs.org/) or use the [NVM PowerShell Module](https://www.powershellgallery.com/packages/nvm).
77

8-
Note: Karma currently works on Node.js **0.10**, **0.12.x**, **4.x**, and **5.x**. See [FAQ] for more info.
8+
Note: Karma currently works on Node.js **0.10**, **0.12.x**, **4.x**, **5.x**, and **6.x**. See [FAQ] for more info.
99

1010
## Installing Karma and plugins
1111

docs/intro/04-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The latest stable version from NPM (`npm install karma`). See [versioning] for m
2525

2626

2727
### Which version of Node.js does Karma run with?
28-
Karma works on all LTS versions node in active maintenance state (see [LTS docs](https://github.com/nodejs/LTS/blob/master/README.md) for more info) as well as the latest stable version. That is **0.12.x**, **4.x** and **5.x** at this point. Additionally, Node **0.10** is currently supported.
28+
Karma works on all LTS versions node in active maintenance state (see [LTS docs](https://github.com/nodejs/LTS/blob/master/README.md) for more info) as well as the latest stable version. That is **0.12.x**, **4.x**, **5.x** and **6.x** at this point. Additionally, Node **0.10** is currently supported.
2929

3030

3131
[mailing list]: https://groups.google.com/d/forum/karma-users

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@
357357
"karma": "./bin/karma"
358358
},
359359
"engines": {
360-
"node": "0.10 || 0.12 || 4 || 5"
360+
"node": "0.10 || 0.12 || 4 || 5 || 6"
361361
},
362362
"version": "0.13.22",
363363
"license": "MIT",

0 commit comments

Comments
 (0)