Skip to content
This repository has been archived by the owner on Aug 24, 2019. It is now read-only.

Commit

Permalink
update travis node.js levels
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Conway-Jones committed Feb 15, 2017
1 parent 8e001fc commit 80942c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .jscsrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"disallowMixedSpacesAndTabs": true,
"disallowMultipleSpaces": {"allowEOLComments": true},
"disallowKeywordsOnNewLine": [],
"requireKeywordsOnNewLine": ["else", "catch"],
//"requireKeywordsOnNewLine": ["else", "catch"],
"requireSpaceBeforeBlockStatements": 1,
//"requireSpaceBeforeObjectValues": false,
//"requireSemicolons": true,
Expand Down
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ addons:
- gcc-4.8
matrix:
allow_failures:
- node_js: "5"
- node_js: "7"
before_install:
- npm install -g npm@latest-2
node_js:
- "5"
- "7"
- "6"
- "4"
- "0.12"
- "0.10"
before_script:
- npm install -g istanbul grunt-cli
- npm install coveralls
Expand Down
2 changes: 1 addition & 1 deletion test/function/random/random_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('random node', function() {
var flow = [{"id":"n1", "type":"random", "name":"random1", "wires":[[]]}];
helper.load(testNode, flow, function() {
var n1 = helper.getNode("n1");
console.log(n1);
//console.log(n1);
n1.should.have.property("low", 1);
n1.should.have.property("high", 10);
n1.should.have.property("inte", false);
Expand Down

0 comments on commit 80942c5

Please sign in to comment.