Skip to content

Commit d5fa8e8

Browse files
committed
test: use strictEqual checks
1 parent b734544 commit d5fa8e8

File tree

1,040 files changed

+1040
-1040
lines changed

Some content is hidden

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

1,040 files changed

+1040
-1040
lines changed

lib/node_modules/@stdlib/random/streams/arcsine/test/test.factory.js

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

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

lib/node_modules/@stdlib/random/streams/arcsine/test/test.js

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

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

lib/node_modules/@stdlib/random/streams/arcsine/test/test.main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var randomStream = require( './../lib/main.js' );
3838

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

lib/node_modules/@stdlib/random/streams/arcsine/test/test.object_mode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var objectMode = require( './../lib/object_mode.js' );
3232

3333
tape( 'main export is a function', function test( t ) {
3434
t.ok( true, __filename );
35-
t.equal( typeof objectMode, 'function', 'main export is a function' );
35+
t.strictEqual( typeof objectMode, 'function', 'main export is a function' );
3636
t.end();
3737
});
3838

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

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

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

lib/node_modules/@stdlib/random/streams/bernoulli/test/test.factory.js

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

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

lib/node_modules/@stdlib/random/streams/bernoulli/test/test.js

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

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

lib/node_modules/@stdlib/random/streams/bernoulli/test/test.main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var randomStream = require( './../lib/main.js' );
3838

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

lib/node_modules/@stdlib/random/streams/bernoulli/test/test.object_mode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var objectMode = require( './../lib/object_mode.js' );
3232

3333
tape( 'main export is a function', function test( t ) {
3434
t.ok( true, __filename );
35-
t.equal( typeof objectMode, 'function', 'main export is a function' );
35+
t.strictEqual( typeof objectMode, 'function', 'main export is a function' );
3636
t.end();
3737
});
3838

lib/node_modules/@stdlib/random/streams/bernoulli/test/test.validate.js

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

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

lib/node_modules/@stdlib/random/streams/beta/test/test.factory.js

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

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

lib/node_modules/@stdlib/random/streams/beta/test/test.js

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

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

lib/node_modules/@stdlib/random/streams/beta/test/test.main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var randomStream = require( './../lib/main.js' );
3838

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

lib/node_modules/@stdlib/random/streams/beta/test/test.object_mode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var objectMode = require( './../lib/object_mode.js' );
3232

3333
tape( 'main export is a function', function test( t ) {
3434
t.ok( true, __filename );
35-
t.equal( typeof objectMode, 'function', 'main export is a function' );
35+
t.strictEqual( typeof objectMode, 'function', 'main export is a function' );
3636
t.end();
3737
});
3838

lib/node_modules/@stdlib/random/streams/beta/test/test.validate.js

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

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

lib/node_modules/@stdlib/random/streams/betaprime/test/test.factory.js

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

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

lib/node_modules/@stdlib/random/streams/betaprime/test/test.js

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

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

lib/node_modules/@stdlib/random/streams/betaprime/test/test.main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var randomStream = require( './../lib/main.js' );
3838

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

lib/node_modules/@stdlib/random/streams/betaprime/test/test.object_mode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var objectMode = require( './../lib/object_mode.js' );
3232

3333
tape( 'main export is a function', function test( t ) {
3434
t.ok( true, __filename );
35-
t.equal( typeof objectMode, 'function', 'main export is a function' );
35+
t.strictEqual( typeof objectMode, 'function', 'main export is a function' );
3636
t.end();
3737
});
3838

lib/node_modules/@stdlib/random/streams/betaprime/test/test.validate.js

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

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

lib/node_modules/@stdlib/random/streams/binomial/test/test.factory.js

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

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

lib/node_modules/@stdlib/random/streams/binomial/test/test.js

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

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

lib/node_modules/@stdlib/random/streams/binomial/test/test.main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var randomStream = require( './../lib/main.js' );
3838

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

lib/node_modules/@stdlib/random/streams/binomial/test/test.object_mode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var objectMode = require( './../lib/object_mode.js' );
3232

3333
tape( 'main export is a function', function test( t ) {
3434
t.ok( true, __filename );
35-
t.equal( typeof objectMode, 'function', 'main export is a function' );
35+
t.strictEqual( typeof objectMode, 'function', 'main export is a function' );
3636
t.end();
3737
});
3838

lib/node_modules/@stdlib/random/streams/binomial/test/test.validate.js

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

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

lib/node_modules/@stdlib/random/streams/box-muller/test/test.factory.js

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

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

lib/node_modules/@stdlib/random/streams/box-muller/test/test.js

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

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

lib/node_modules/@stdlib/random/streams/box-muller/test/test.main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var randomStream = require( './../lib/main.js' );
3838

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

lib/node_modules/@stdlib/random/streams/box-muller/test/test.object_mode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var objectMode = require( './../lib/object_mode.js' );
3232

3333
tape( 'main export is a function', function test( t ) {
3434
t.ok( true, __filename );
35-
t.equal( typeof objectMode, 'function', 'main export is a function' );
35+
t.strictEqual( typeof objectMode, 'function', 'main export is a function' );
3636
t.end();
3737
});
3838

lib/node_modules/@stdlib/random/streams/box-muller/test/test.validate.js

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

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

lib/node_modules/@stdlib/random/streams/cauchy/test/test.factory.js

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

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

lib/node_modules/@stdlib/random/streams/cauchy/test/test.js

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

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

lib/node_modules/@stdlib/random/streams/cauchy/test/test.main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var randomStream = require( './../lib/main.js' );
3838

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

lib/node_modules/@stdlib/random/streams/cauchy/test/test.object_mode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var objectMode = require( './../lib/object_mode.js' );
3232

3333
tape( 'main export is a function', function test( t ) {
3434
t.ok( true, __filename );
35-
t.equal( typeof objectMode, 'function', 'main export is a function' );
35+
t.strictEqual( typeof objectMode, 'function', 'main export is a function' );
3636
t.end();
3737
});
3838

lib/node_modules/@stdlib/random/streams/cauchy/test/test.validate.js

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

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

lib/node_modules/@stdlib/random/streams/chi/test/test.factory.js

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

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

lib/node_modules/@stdlib/random/streams/chi/test/test.js

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

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

lib/node_modules/@stdlib/random/streams/chi/test/test.main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var randomStream = require( './../lib/main.js' );
3838

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

lib/node_modules/@stdlib/random/streams/chi/test/test.object_mode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var objectMode = require( './../lib/object_mode.js' );
3232

3333
tape( 'main export is a function', function test( t ) {
3434
t.ok( true, __filename );
35-
t.equal( typeof objectMode, 'function', 'main export is a function' );
35+
t.strictEqual( typeof objectMode, 'function', 'main export is a function' );
3636
t.end();
3737
});
3838

lib/node_modules/@stdlib/random/streams/chi/test/test.validate.js

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

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

lib/node_modules/@stdlib/random/streams/chisquare/test/test.factory.js

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

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

lib/node_modules/@stdlib/random/streams/chisquare/test/test.js

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

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

lib/node_modules/@stdlib/random/streams/chisquare/test/test.main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var randomStream = require( './../lib/main.js' );
3838

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

lib/node_modules/@stdlib/random/streams/chisquare/test/test.object_mode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var objectMode = require( './../lib/object_mode.js' );
3232

3333
tape( 'main export is a function', function test( t ) {
3434
t.ok( true, __filename );
35-
t.equal( typeof objectMode, 'function', 'main export is a function' );
35+
t.strictEqual( typeof objectMode, 'function', 'main export is a function' );
3636
t.end();
3737
});
3838

0 commit comments

Comments
 (0)