Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Oct 4, 2023
1 parent ed45806 commit 3b460d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 88 deletions.
12 changes: 6 additions & 6 deletions test/dist/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

var tape = require( 'tape' );
var proxyquire = require( 'proxyquire' );
var IS_BROWSER = require( '@stdlib/assert-is-browser/dist' );
var dnanmean = require( ./'../../dist' );
var IS_BROWSER = require( '@stdlib/assert-is-browser' );
var dnanmean = require( './../../../dist' );


// VARIABLES //
Expand All @@ -47,8 +47,8 @@ tape( 'attached to the main export is a method providing an ndarray interface',
});

tape( 'if a native implementation is available, the main export is the native implementation', opts, function test( t ) {
var dnanmean = proxyquire( ./'../../dist', {
'@stdlib/utils-try-require/dist': tryRequire
var dnanmean = proxyquire( './../../../dist', {
'@stdlib/utils-try-require': tryRequire
});

t.strictEqual( dnanmean, mock, 'returns expected value' );
Expand All @@ -69,8 +69,8 @@ tape( 'if a native implementation is not available, the main export is a JavaScr

main = require( './../../lib/dnanmean.js' );

dnanmean = proxyquire( ./'../../dist', {
'@stdlib/utils-try-require/dist': tryRequire
dnanmean = proxyquire( './../../../dist', {
'@stdlib/utils-try-require': tryRequire
});

t.strictEqual( dnanmean, main, 'returns expected value' );
Expand Down
82 changes: 0 additions & 82 deletions test/dist/test.jsE

This file was deleted.

0 comments on commit 3b460d8

Please sign in to comment.