Skip to content

Commit

Permalink
feat: add support for node 6
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed May 17, 2016
1 parent 08242a0 commit 0b8dc2c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -3,8 +3,9 @@ language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- 4
- 5
- 6

env:
global:
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Expand Up @@ -5,6 +5,7 @@ environment:
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "5"
- nodejs_version: "6"

matrix:
fast_finish: true
Expand Down
2 changes: 1 addition & 1 deletion docs/intro/01-installation.md
Expand Up @@ -5,7 +5,7 @@ Karma runs on [Node.js] and is available as an [NPM] package.
On Mac or Linux we recommend using [NVM](https://github.com/creationix/nvm). On Windows, download Node.js
from [the official site](https://nodejs.org/) or use the [NVM PowerShell Module](https://www.powershellgallery.com/packages/nvm).

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

## Installing Karma and plugins

Expand Down
2 changes: 1 addition & 1 deletion docs/intro/04-faq.md
Expand Up @@ -25,7 +25,7 @@ The latest stable version from NPM (`npm install karma`). See [versioning] for m


### Which version of Node.js does Karma run with?
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.
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.


[mailing list]: https://groups.google.com/d/forum/karma-users
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -357,7 +357,7 @@
"karma": "./bin/karma"
},
"engines": {
"node": "0.10 || 0.12 || 4 || 5"
"node": "0.10 || 0.12 || 4 || 5 || 6"
},
"version": "0.13.22",
"license": "MIT",
Expand Down

0 comments on commit 0b8dc2c

Please sign in to comment.