Skip to content

Commit 11b2b38

Browse files
committed
test: use strictEqual checks
1 parent 0e39133 commit 11b2b38

File tree

210 files changed

+210
-210
lines changed

Some content is hidden

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

210 files changed

+210
-210
lines changed

lib/node_modules/@stdlib/constants/array/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/constants/complex128/num-bytes/test/test.js

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

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

lib/node_modules/@stdlib/constants/complex128/test/test.js

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

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

lib/node_modules/@stdlib/constants/complex64/num-bytes/test/test.js

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

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

lib/node_modules/@stdlib/constants/complex64/test/test.js

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

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

lib/node_modules/@stdlib/constants/float16/exponent-bias/test/test.js

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

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

lib/node_modules/@stdlib/constants/float16/max-safe-integer/test/test.js

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

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

lib/node_modules/@stdlib/constants/float16/max/test/test.js

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

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

lib/node_modules/@stdlib/constants/float16/min-safe-integer/test/test.js

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

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

lib/node_modules/@stdlib/constants/float16/ninf/test/test.js

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

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

lib/node_modules/@stdlib/constants/float16/num-bytes/test/test.js

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

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

lib/node_modules/@stdlib/constants/float16/pinf/test/test.js

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

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

lib/node_modules/@stdlib/constants/float16/precision/test/test.js

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

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

lib/node_modules/@stdlib/constants/float16/smallest-normal/test/test.js

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

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

lib/node_modules/@stdlib/constants/float16/smallest-subnormal/test/test.js

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

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

lib/node_modules/@stdlib/constants/float16/test/test.js

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

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

lib/node_modules/@stdlib/constants/float32/exponent-bias/test/test.js

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

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

lib/node_modules/@stdlib/constants/float32/max-safe-integer/test/test.js

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

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

lib/node_modules/@stdlib/constants/float32/max/test/test.js

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

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

lib/node_modules/@stdlib/constants/float32/min-safe-integer/test/test.js

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

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

lib/node_modules/@stdlib/constants/float32/ninf/test/test.js

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

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

lib/node_modules/@stdlib/constants/float32/num-bytes/test/test.js

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

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

lib/node_modules/@stdlib/constants/float32/pinf/test/test.js

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

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

lib/node_modules/@stdlib/constants/float32/precision/test/test.js

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

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

lib/node_modules/@stdlib/constants/float32/smallest-normal/test/test.js

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

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

lib/node_modules/@stdlib/constants/float32/smallest-subnormal/test/test.js

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

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

lib/node_modules/@stdlib/constants/float32/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/apery/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/catalan/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/cbrt-eps/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/e/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/eps/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/eulergamma/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/exponent-bias/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/fourth-pi/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/fourth-root-eps/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/glaisher-kinkelin/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/half-ln-two/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/half-pi/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/ln-half/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/ln-pi/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/ln-sqrt-two-pi/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var LN_SQRT_TWO_PI = require( './../lib' );
3333

3434
tape( 'main export is a number', function test( t ) {
3535
t.ok( true, __filename );
36-
t.equal( typeof LN_SQRT_TWO_PI, 'number', 'main export is a number' );
36+
t.strictEqual( typeof LN_SQRT_TWO_PI, 'number', 'main export is a number' );
3737
t.end();
3838
});
3939

lib/node_modules/@stdlib/constants/float64/ln-ten/test/test.js

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

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

lib/node_modules/@stdlib/constants/float64/ln-two-pi/test/test.js

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

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

0 commit comments

Comments
 (0)