Skip to content

Commit 2bcc7a5

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents d358245 + acea23e commit 2bcc7a5

File tree

222 files changed

+6364
-1760
lines changed

Some content is hidden

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

222 files changed

+6364
-1760
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/first-unit-test/lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function main( context ) {
7676
hasMainExportTest = false;
7777
tOkExists = false;
7878
filename = context.getFilename();
79-
if ( contains( filename, 'test.' ) ) {
79+
if ( contains( filename, 'test.' ) && !contains( filename, 'fixtures' ) ) {
8080
if ( endsWith( filename, 'cli.js' ) ) {
8181
forCLI = true;
8282
}

lib/node_modules/@stdlib/_tools/github/fetch-file/lib/index.js

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

7272
// MAIN //
7373

74-
setReadOnly( createRepo, 'factory', factory );
74+
setReadOnly( main, 'factory', factory );
7575

7676

7777
// EXPORTS //

lib/node_modules/@stdlib/_tools/makie/plugins/makie-repl/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
* @module @stdlib/_tools/makie/plugins/makie-repl
2525
*
2626
* @example
27-
* var plugin = require( '@stdlib/_tools/makie/plugins/makie-repl' );
2827
* var makie = require( '@stdlib/_tools/makie' );
28+
* var plugin = require( '@stdlib/_tools/makie/plugins/makie-repl' );
2929
* var opts = {
3030
* 'plugins': {
3131
* 'benchmark': plugin

lib/node_modules/@stdlib/_tools/utils/jsdelivr-url/test/test.js

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ function setup() {
3737
// TESTS //
3838

3939
tape( 'main export is a function', function test( t ) {
40+
t.ok( true, __filename );
4041
t.strictEqual( typeof jsdelivr, 'function', 'main export is a function' );
4142
t.end();
4243
});

lib/node_modules/@stdlib/_tools/utils/jsdelivr-url/test/test.url.js

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ function setup() {
3939
// TESTS //
4040

4141
tape( 'main export is a function', function test( t ) {
42+
t.ok( true, __filename );
4243
t.strictEqual( typeof url, 'function', 'main export is a function' );
4344
t.end();
4445
});

lib/node_modules/@stdlib/_tools/utils/jsdelivr-url/test/test.validate.js

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

3030
tape( 'main export is a function', function test( t ) {
31+
t.ok( true, __filename );
3132
t.strictEqual( typeof validate, 'function', 'main export is a function' );
3233
t.end();
3334
});

lib/node_modules/@stdlib/_tools/utils/root-dir/test/test.js

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

3030
tape( 'main export is a function', function test( t ) {
31+
t.ok( true, __filename );
3132
t.strictEqual( typeof rootDir, 'function', 'main export is a function' );
3233
t.end();
3334
});

lib/node_modules/@stdlib/_tools/utils/tex-equation-to-svg/test/test.factory.js

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ var TEST3 = require( './fixtures/3.js' );
3434
// TESTS //
3535

3636
tape( 'main export is a function', function test( t ) {
37+
t.ok( true, __filename );
3738
t.strictEqual( typeof factory, 'function', 'main export is a function' );
3839
t.end();
3940
});

lib/node_modules/@stdlib/_tools/utils/tex-equation-to-svg/test/test.js

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var tex2svg = require( './../lib' );
2727
// TESTS //
2828

2929
tape( 'main export is a function', function test( t ) {
30+
t.ok( true, __filename );
3031
t.strictEqual( typeof tex2svg, 'function', 'main export is a function' );
3132
t.end();
3233
});

lib/node_modules/@stdlib/_tools/utils/tex-equation-to-svg/test/test.tex2svg.js renamed to lib/node_modules/@stdlib/_tools/utils/tex-equation-to-svg/test/test.main.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
var tape = require( 'tape' );
2424
var noop = require( '@stdlib/utils/noop' );
25-
var tex2svg = require( './../lib/tex2svg.js' );
25+
var tex2svg = require( './../lib/main.js' );
2626

2727

2828
// FIXTURES //
@@ -34,6 +34,7 @@ var TEST3 = require( './fixtures/3.js' );
3434
// TESTS //
3535

3636
tape( 'main export is a function', function test( t ) {
37+
t.ok( true, __filename );
3738
t.strictEqual( typeof tex2svg, 'function', 'main export is a function' );
3839
t.end();
3940
});

lib/node_modules/@stdlib/_tools/utils/tex-equation-to-svg/test/test.validate.js

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var validate = require( './../lib/validate.js' );
2727
// TESTS //
2828

2929
tape( 'main export is a function', function test( t ) {
30+
t.ok( true, __filename );
3031
t.strictEqual( typeof validate, 'function', 'main export is a function' );
3132
t.end();
3233
});

0 commit comments

Comments
 (0)