Skip to content

Commit

Permalink
style: remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Demidov committed May 2, 2017
1 parent 4ce73e8 commit 7795106
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions test/test-plugin.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// import {readFile} from 'fs';
import test from 'ava';
import posthtml from 'posthtml';
import isPromise from 'is-promise';
Expand All @@ -10,17 +9,6 @@ function processing(html, settings = {}, plugins = []) {
.process(html);
}

/* function read(pathFile) {
return new Promise((resolve, reject) => {
readFile(pathFile, 'utf8', (err, data) => {
if (err) {
reject(err);
}
return resolve(data);
});
});
} */

test('plugin must be function', t => {
t.true(typeof removeTags === 'function');
});
Expand Down

0 comments on commit 7795106

Please sign in to comment.