File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
const tap = require('tap');
44
const lib = require('..');
55

6-
tap.test('API exported count', (test) => {
6+
tap.test('API exported count', test => {
77
test.strictSame(Object.keys(lib).length, 7);
88
test.end();
99
});
1010

11-
tap.test('API exported types', (test) => {
11+
tap.test('API exported types', test => {
1212
for (const key in lib) {
1313
const fn = lib[key];
14-
test.strictSame(typeof(fn), 'function');
14+
test.strictSame(typeof fn, 'function');
1515
}
1616
test.end();
1717
});
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const tap = require('tap');
44
const lib = require('..');
55

6-
tap.test('submodules', (test) => {
6+
tap.test('submodules', test => {
77
test.strictSame(lib.method11(), 11);
88
test.strictSame(lib.method12(), 12);
99
test.strictSame(lib.method21(), 21);

0 commit comments

Comments
 (0)