Skip to content

Commit

Permalink
Add skipped test again
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Jun 17, 2017
1 parent 9004991 commit 0cf9c72
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,12 @@ test('Fixtures', function (t) {
var output = read(join(filepath, 'output.md'), 'utf-8');
var input = read(join(filepath, 'input.md'), 'utf-8');
var config = join(filepath, 'config.json');
var fn;
var result;

config = exists(config) ? JSON.parse(read(config, 'utf-8')) : {};
result = process(input, config);

fn = path.basename(filepath) === 'unicode' ? t.skip : t.equal;

fn(result, output, 'should work on `' + fixture + '`');
t.equal(result, output, 'should work on `' + fixture + '`');
});

t.end();
Expand Down

0 comments on commit 0cf9c72

Please sign in to comment.