Skip to content

Commit

Permalink
Mark known failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed May 12, 2017
1 parent f27b447 commit d41fcbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"write-file-atomic": "^1.1.4"
},
"devDependencies": {
"ava": "^0.14.0",
"ava": "^0.15.0",
"coveralls": "^2.11.6",
"mock-fs": "^3.5.0",
"nyc": "^6.4.0",
Expand Down
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ test('custom encoding changes value loaded from disk', t => {
t.is(transform('foo'), new Buffer('foo bar').toString('hex'));
});

test('custom encoding changes the value stored to disk', t => {
test.failing('custom encoding changes the value stored to disk', t => {
const transform = wrap({
transform: code => new Buffer(code + ' bar').toString('hex'),
encoding: 'hex',
Expand Down

0 comments on commit d41fcbd

Please sign in to comment.