We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31d76bf commit c0b3919Copy full SHA for c0b3919
tools/snippets/test/test.js
@@ -10,7 +10,7 @@ var TODO = require( './../lib' );
10
11
tape( 'main export is a function', function test( t ) {
12
t.ok( true, __filename );
13
- t.equal( typeof TODO, 'function', 'main export is a function' );
+ t.strictEqual( typeof TODO, 'function', 'main export is a function' );
14
t.end();
15
});
16
0 commit comments