Skip to content

Commit 2e197bc

Browse files
committed
test: use strictEqual checks
1 parent 3f60609 commit 2e197bc

File tree

337 files changed

+337
-337
lines changed

Some content is hidden

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

337 files changed

+337
-337
lines changed

lib/node_modules/@stdlib/bigint/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/blas/base/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var blas = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof blas, 'object', 'main export is an object' );
32+
t.strictEqual( typeof blas, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/blas/ext/base/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/blas/ext/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/blas/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/boolean/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/buffer/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/cli/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/complex/base/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/complex/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/console/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/error/reviver/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function setup( type, name, msg, stack ) {
4141

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

lib/node_modules/@stdlib/error/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/error/tools/database/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var database = require( './../lib' );
3030

3131
tape( 'main export is a function', function test( t ) {
3232
t.ok( true, __filename );
33-
t.equal( typeof database, 'function', 'main export is a function' );
33+
t.strictEqual( typeof database, 'function', 'main export is a function' );
3434
t.end();
3535
});
3636

lib/node_modules/@stdlib/error/tools/fmtprodmsg-factory/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var fmtprodmsgFactory = require( './../lib' );
2828

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

lib/node_modules/@stdlib/error/tools/fmtprodmsg-factory/test/test.validate.js

+1-1
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', 'export is a function' );
31+
t.strictEqual( typeof validate, 'function', 'export is a function' );
3232
t.end();
3333
});
3434

lib/node_modules/@stdlib/error/tools/fmtprodmsg/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var fmtprodmsg = require( './../lib' );
2828

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

lib/node_modules/@stdlib/error/tools/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ns = require( './../lib' );
2929

3030
tape( 'main export is an object', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof ns, 'object', 'main export is an object' );
32+
t.strictEqual( typeof ns, 'object', 'main export is an object' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/fs/exists/test/test.async.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var opts = {
3939

4040
tape( 'main export is a function', function test( t ) {
4141
t.ok( true, __filename );
42-
t.equal( typeof exists, 'function', 'export is a function' );
42+
t.strictEqual( typeof exists, 'function', 'export is a function' );
4343
t.end();
4444
});
4545

lib/node_modules/@stdlib/fs/exists/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var exists = require( './../lib' );
2828

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

lib/node_modules/@stdlib/fs/exists/test/test.sync.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var opts = {
3939

4040
tape( 'main export is a function', function test( t ) {
4141
t.ok( true, __filename );
42-
t.equal( typeof exists, 'function', 'export is a function' );
42+
t.strictEqual( typeof exists, 'function', 'export is a function' );
4343
t.end();
4444
});
4545

lib/node_modules/@stdlib/fs/open/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var open = require( './../lib' ); // eslint-disable-line stdlib/no-redeclare
2828

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

lib/node_modules/@stdlib/fs/open/test/test.main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var opts = {
3939

4040
tape( 'main export is a function', function test( t ) {
4141
t.ok( true, __filename );
42-
t.equal( typeof open, 'function', 'main export is a function' );
42+
t.strictEqual( typeof open, 'function', 'main export is a function' );
4343
t.end();
4444
});
4545

lib/node_modules/@stdlib/fs/open/test/test.sync.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var opts = {
3939

4040
tape( 'main export is a function', function test( t ) {
4141
t.ok( true, __filename );
42-
t.equal( typeof open, 'function', 'main export is a function' );
42+
t.strictEqual( typeof open, 'function', 'main export is a function' );
4343
t.end();
4444
});
4545

lib/node_modules/@stdlib/fs/read-dir/test/test.async.js

+1-1
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 readDir, 'function', 'main export is a function' );
41+
t.strictEqual( typeof readDir, 'function', 'main export is a function' );
4242
t.end();
4343
});
4444

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var readDir = require( './../lib' );
2828

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

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

+1-1
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 readDir, 'function', 'main export is a function' );
41+
t.strictEqual( typeof readDir, 'function', 'main export is a function' );
4242
t.end();
4343
});
4444

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

+1-1
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 readFileList, 'function', 'main export is a function' );
43+
t.strictEqual( typeof readFileList, 'function', 'main export is a function' );
4444
t.end();
4545
});
4646

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var clearPending = require( './../lib/clear_pending.js' );
3131

3232
tape( 'main export is a function', function test( t ) {
3333
t.ok( true, __filename );
34-
t.equal( typeof clearPending, 'function', 'main export is a function' );
34+
t.strictEqual( typeof clearPending, 'function', 'main export is a function' );
3535
t.end();
3636
});
3737

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var readFile = require( './../lib' );
2828

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

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

+1-1
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 readFile, 'function', 'main export is a function' );
41+
t.strictEqual( typeof readFile, 'function', 'main export is a function' );
4242
t.end();
4343
});
4444

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

+1-1
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 readFile, 'function', 'main export is a function' );
41+
t.strictEqual( typeof readFile, 'function', 'main export is a function' );
4242
t.end();
4343
});
4444

lib/node_modules/@stdlib/os/platform/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var PLATFORM = require( './../lib' );
2929

3030
tape( 'main export is a string', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof PLATFORM, 'string', 'main export is a string' );
32+
t.strictEqual( typeof PLATFORM, 'string', 'main export is a string' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/os/tmpdir/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var tmpdir = require( './../lib' );
2929

3030
tape( 'main export is a function', function test( t ) {
3131
t.ok( true, __filename );
32-
t.equal( typeof tmpdir, 'function', 'main export is a function' );
32+
t.strictEqual( typeof tmpdir, 'function', 'main export is a function' );
3333
t.end();
3434
});
3535

lib/node_modules/@stdlib/random/array/arcsine/test/test.validate.js

+1-1
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/random/array/beta/test/test.validate.js

+1-1
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/random/array/betaprime/test/test.validate.js

+1-1
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/random/array/cosine/test/test.validate.js

+1-1
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/random/array/discrete-uniform/test/test.validate.js

+1-1
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/random/array/exponential/test/test.validate.js

+1-1
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/random/array/gamma/test/test.validate.js

+1-1
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/random/array/geometric/test/test.validate.js

+1-1
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/random/array/invgamma/test/test.validate.js

+1-1
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/random/array/lognormal/test/test.validate.js

+1-1
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)