Skip to content

Commit c3e988e

Browse files
committed
Update test description
1 parent 0a91445 commit c3e988e

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/fs/read-json/test

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/fs/read-json/test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ var readJSON = require( './../lib' );
1010

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

17-
tape( 'attached to the main export is a function to read a file as JSON synchronously', function test( t ) {
18-
t.equal( typeof readJSON.sync, 'function', 'has `sync` method' );
17+
tape( 'attached to the main export is a function to synchronously read a file as JSON', function test( t ) {
18+
t.strictEqual( typeof readJSON.sync, 'function', 'has `sync` method' );
1919
t.end();
2020
});

0 commit comments

Comments
 (0)