From 964f0f33b4ea8ea49c4cb2a6036dbc7cca0f35d3 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Wed, 16 Aug 2017 21:44:13 -0400 Subject: [PATCH 1/2] Document how to run tests in other browsers --- test/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/README.md b/test/README.md index 6f63717932..2fd9fdbd90 100644 --- a/test/README.md +++ b/test/README.md @@ -18,6 +18,12 @@ Run the tests once: npm test +This will run tests in Chrome. If you do not have Chrome installed, you can run tests on Firefox instead: + + npm test -- --browsers Firefox + +To run tests in other browsers, you need to install [additional Karma launchers](http://karma-runner.github.io/1.0/config/browsers.html). + To run the tests continuously: npm run karma From 7b906b9e443558c48a4823fa6ff022ee04bc58bd Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Wed, 16 Aug 2017 21:45:27 -0400 Subject: [PATCH 2/2] Tell people to use Node 8 --- DEVELOPING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPING.md b/DEVELOPING.md index 794a6f98b5..c5bc2d4143 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -17,7 +17,7 @@ The minimum requirements are: * GNU Make * Git -* [Node.js](http://nodejs.org/) (higher than 0.12.x) +* [Node.js](http://nodejs.org/) (version 8 and above) * Python 2.6 or 2.7 * Java 7 (JRE and JDK)