Skip to content

Commit c0b3919

Browse files
committed
Use strict equal test
1 parent 31d76bf commit c0b3919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/snippets/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var TODO = require( './../lib' );
1010

1111
tape( 'main export is a function', function test( t ) {
1212
t.ok( true, __filename );
13-
t.equal( typeof TODO, 'function', 'main export is a function' );
13+
t.strictEqual( typeof TODO, 'function', 'main export is a function' );
1414
t.end();
1515
});
1616

0 commit comments

Comments
 (0)