Skip to content

Commit

Permalink
Remove redundant file exist assert
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroPerezMartin committed Dec 29, 2017
1 parent 65adc0a commit 31b16ed
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/sourcemaps.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const tap = require('tap');
const fs = require('fs');
const ClientKitCss = require('../');
const utils = require('./utils');

Expand All @@ -11,7 +10,6 @@ tap.test('sourcemaps', (t) => {
});
css.execute((err, results) => {
t.equal(err, null);
t.ok(fs.existsSync('test/out/sourcemaps.css.map'));
utils.checkOutput(t, 'sourcemaps.css.map');
t.end();
});
Expand Down

0 comments on commit 31b16ed

Please sign in to comment.