File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lib/node_modules/@stdlib/fs/read-json/test Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ var readJSON = require( './../lib' );
1010
1111tape ( '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} ) ;
You can’t perform that action at this time.
0 commit comments