Skip to content

Commit a4e2d42

Browse files
committed
FIX: make travis happy again, take 2
1 parent 3a431a9 commit a4e2d42

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

test/fixtures/basic/results.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
1+
]50;CurrentDir=/path/to/working/directory
22
⚠ http://eslint.org/docs/rules/no-unused-vars path is defined but never used
33
index.js:8:2
44
 path = require( 'path' ),

test/fixtures/fatal/results.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
1+
]50;CurrentDir=/path/to/working/directory
22
✘ http://eslint.org/docs/rules/ Unexpected token {
33
index.js:3:13
44

test/fixtures/missing-line-column/results.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
1+
]50;CurrentDir=/path/to/working/directory
22
⚠ http://eslint.org/docs/rules/ path is defined but never used
33
index.js:0:0
44
 path = require( 'path' ),

test/fixtures/missing-messages/results.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
1+
]50;CurrentDir=/path/to/working/directory
22
✘ http://eslint.org/docs/rules/curly Expected { after 'if' condition
33
test/runner.js:41:2
44
 if ( err ) console.log( 'failed tests: ' + err );

test/fixtures/missing-rule-id/results.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
1+
]50;CurrentDir=/path/to/working/directory
22
⚠ http://eslint.org/docs/rules/ path is defined but never used
33
index.js:8:2
44
 path = require( 'path' ),

test/fixtures/single-error/results.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
]50;CurrentDir=/Users/roy/royws/eslint-friendly-formatter
1+
]50;CurrentDir=/path/to/working/directory
22
⚠ http://eslint.org/docs/rules/no-unused-vars path is defined but never used
33
index.js:8:2
44
 path = require( 'path' ),

test/specs/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ describe('eslint-friendly-formatter', function() {
2424
'./process': {
2525
env: {
2626
EFF_NO_GRAY: 'false'
27+
},
28+
cwd: function cwd() {
29+
return '/path/to/working/directory';
2730
}
2831
}
2932
});

0 commit comments

Comments
 (0)