Skip to content

Commit 55866ea

Browse files
committed
test: use strictEqual checks
1 parent 2e197bc commit 55866ea

File tree

264 files changed

+264
-264
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

264 files changed

+264
-264
lines changed

lib/node_modules/@stdlib/fs/read-file-list/test/test.js

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

2929
tape( 'main export is a function', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( typeof readFileList, 'function', 'main export is a function' );
31+
t.strictEqual( typeof readFileList, 'function', 'main export is a function' );
3232
t.end();
3333
});
3434

lib/node_modules/@stdlib/fs/read-file-list/test/test.sync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var opts = {
3838

3939
tape( 'main export is a function', function test( t ) {
4040
t.ok( true, __filename );
41-
t.equal( typeof readFileList, 'function', 'main export is a function' );
41+
t.strictEqual( typeof readFileList, 'function', 'main export is a function' );
4242
t.end();
4343
});
4444

lib/node_modules/@stdlib/fs/resolve-parent-path-by/test/test.async.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var opts = {
4141

4242
tape( 'main export is a function', function test( t ) {
4343
t.ok( true, __filename );
44-
t.equal( typeof resolveParentPathBy, 'function', 'main export is a function' );
44+
t.strictEqual( typeof resolveParentPathBy, 'function', 'main export is a function' );
4545
t.end();
4646
});
4747

lib/node_modules/@stdlib/fs/resolve-parent-path-by/test/test.js

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

2929
tape( 'main export is a function', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( typeof resolveParentPathBy, 'function', 'main export is a function' );
31+
t.strictEqual( typeof resolveParentPathBy, 'function', 'main export is a function' );
3232
t.end();
3333
});
3434

lib/node_modules/@stdlib/fs/resolve-parent-path-by/test/test.sync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var opts = {
4040

4141
tape( 'main export is a function', function test( t ) {
4242
t.ok( true, __filename );
43-
t.equal( typeof resolveParentPathBy, 'function', 'main export is a function' );
43+
t.strictEqual( typeof resolveParentPathBy, 'function', 'main export is a function' );
4444
t.end();
4545
});
4646

lib/node_modules/@stdlib/fs/resolve-parent-path-by/test/test.validate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' );
2828

2929
tape( 'main export is a function', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( typeof validate, 'function', 'main export is a function' );
31+
t.strictEqual( typeof validate, 'function', 'main export is a function' );
3232
t.end();
3333
});
3434

lib/node_modules/@stdlib/fs/resolve-parent-path/test/test.async.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var opts = {
4141

4242
tape( 'main export is a function', function test( t ) {
4343
t.ok( true, __filename );
44-
t.equal( typeof resolveParentPath, 'function', 'main export is a function' );
44+
t.strictEqual( typeof resolveParentPath, 'function', 'main export is a function' );
4545
t.end();
4646
});
4747

lib/node_modules/@stdlib/fs/resolve-parent-path/test/test.js

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

2929
tape( 'main export is a function', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( typeof resolveParentPath, 'function', 'main export is a function' );
31+
t.strictEqual( typeof resolveParentPath, 'function', 'main export is a function' );
3232
t.end();
3333
});
3434

lib/node_modules/@stdlib/fs/resolve-parent-path/test/test.sync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var opts = {
4040

4141
tape( 'main export is a function', function test( t ) {
4242
t.ok( true, __filename );
43-
t.equal( typeof resolveParentPath, 'function', 'main export is a function' );
43+
t.strictEqual( typeof resolveParentPath, 'function', 'main export is a function' );
4444
t.end();
4545
});
4646

lib/node_modules/@stdlib/fs/resolve-parent-path/test/test.validate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' );
2828

2929
tape( 'main export is a function', function test( t ) {
3030
t.ok( true, __filename );
31-
t.equal( typeof validate, 'function', 'main export is a function' );
31+
t.strictEqual( typeof validate, 'function', 'main export is a function' );
3232
t.end();
3333
});
3434

0 commit comments

Comments
 (0)