Skip to content

Commit

Permalink
FIX: make travis happy again, take 2
Browse files Browse the repository at this point in the history
  • Loading branch information
royriojas committed May 11, 2017
1 parent 3a431a9 commit a4e2d42
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/fixtures/basic/results.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
]50;CurrentDir=/path/to/working/directory
⚠ http://eslint.org/docs/rules/no-unused-vars path is defined but never used
index.js:8:2
 path = require( 'path' ),
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/fatal/results.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
]50;CurrentDir=/path/to/working/directory
✘ http://eslint.org/docs/rules/ Unexpected token {
index.js:3:13

Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/missing-line-column/results.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
]50;CurrentDir=/path/to/working/directory
⚠ http://eslint.org/docs/rules/ path is defined but never used
index.js:0:0
 path = require( 'path' ),
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/missing-messages/results.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
]50;CurrentDir=/path/to/working/directory
✘ http://eslint.org/docs/rules/curly Expected { after 'if' condition
test/runner.js:41:2
 if ( err ) console.log( 'failed tests: ' + err );
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/missing-rule-id/results.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
]50;CurrentDir=/path/to/working/directory
⚠ http://eslint.org/docs/rules/ path is defined but never used
index.js:8:2
 path = require( 'path' ),
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/single-error/results.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
]50;CurrentDir=/path/to/working/directory
⚠ http://eslint.org/docs/rules/no-unused-vars path is defined but never used
index.js:8:2
 path = require( 'path' ),
Expand Down
3 changes: 3 additions & 0 deletions test/specs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ describe('eslint-friendly-formatter', function() {
'./process': {
env: {
EFF_NO_GRAY: 'false'
},
cwd: function cwd() {
return '/path/to/working/directory';
}
}
});
Expand Down

0 comments on commit a4e2d42

Please sign in to comment.