From eb407abebcf298a4552f36e18dcbec1375f42305 Mon Sep 17 00:00:00 2001 From: Pedro Araujo Date: Fri, 17 Feb 2017 08:46:35 -0200 Subject: [PATCH] feat: add support for node@7 Fixes #2559 --- .travis.yml | 1 + appveyor.yml | 1 + docs/intro/01-installation.md | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4f9a5cd82..6c8c1c826 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ node_js: - 4 - 5 - 6 + - 7 env: global: diff --git a/appveyor.yml b/appveyor.yml index 1d037dd1b..468e6cc71 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,6 +6,7 @@ environment: - nodejs_version: "4" - nodejs_version: "5" - nodejs_version: "6" + - nodejs_version: "7" matrix: fast_finish: true diff --git a/docs/intro/01-installation.md b/docs/intro/01-installation.md index 4067ebad8..3b822b4d2 100644 --- a/docs/intro/01-installation.md +++ b/docs/intro/01-installation.md @@ -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**, **5.x**, and **6.x**. See [FAQ] for more info. +Note: Karma currently works on Node.js **0.10**, **0.12.x**, **4.x**, **5.x**, **6.x**, and **7.x**. See [FAQ] for more info. ## Installing Karma and plugins diff --git a/package.json b/package.json index 0dd9e2211..51fa3b209 100644 --- a/package.json +++ b/package.json @@ -411,7 +411,7 @@ "karma": "./bin/karma" }, "engines": { - "node": "0.10 || 0.12 || 4 || 5 || 6" + "node": "0.10 || 0.12 || 4 || 5 || 6 || 7" }, "version": "1.4.1", "license": "MIT",