Skip to content

Commit

Permalink
Update checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Oct 18, 2022
1 parent 76d483b commit 89b71f5
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

var tape = require( 'tape' );
var Symbol = require( '@stdlib/symbol/ctor' );
var Object = require( '@stdlib/object/ctor' );
var hasSymbols = require( '@stdlib/assert/has-symbol-support' );
var isSymbolArray = require( './../lib' );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var reBasenamePosix = require( './../lib/main.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reBasenamePosix instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reBasenamePosix, 'function', 'main export is a function' );
t.end();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var reBasenameWindows = require( './../lib/main.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reBasenameWindows instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reBasenameWindows, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/regexp/basename/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ proxyquire = proxyquire.noPreserveCache();

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reBasename instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reBasename, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/regexp/basename/test/test.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var reBasename = require( './../lib/main.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reBasename instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reBasename, 'function', 'main export is a function' );
t.end();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var reColorHexadecimal = require( './../lib' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reColorHexadecimal instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reColorHexadecimal, 'function', 'main export is a function' );
t.end();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var reColorHexadecimal = require( './../lib/main.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reColorHexadecimal instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reColorHexadecimal, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/regexp/dirname/test/test.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var reDirname = require( './../lib/main.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reDirname instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reDirname, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/regexp/extname/test/test.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var reExtname = require( './../lib/main.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reExtname instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reExtname, 'function', 'main export is a function' );
t.end();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var reFilenamePosix = require( './../lib/main.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reFilenamePosix instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reFilenamePosix, 'function', 'main export is a function' );
t.end();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var reFilenameWindows = require( './../lib/main.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reFilenameWindows instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reFilenameWindows, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/regexp/filename/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ proxyquire = proxyquire.noPreserveCache();

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reFilename instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reFilename, 'function', 'main export is a function' );
t.end();
});

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/regexp/filename/test/test.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var reFilename = require( './../lib/main.js' );

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( reFilename instanceof Function, true, 'main export is a function' );
t.strictEqual( typeof reFilename, 'function', 'main export is a function' );
t.end();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function createBenchmark( len ) {
}
}
b.toc();
if ( typeof out !== 'string' ) {
if ( !isString( out ) ) {
b.fail( 'should return a string' );
}
b.pass( 'benchmark finished' );
Expand Down

0 comments on commit 89b71f5

Please sign in to comment.