Skip to content

Commit 2226dae

Browse files
committed
fix: skip test if native addon is not available
1 parent 06a96f2 commit 2226dae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/acoth/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for huge negative
241241
t.end();
242242
});
243243

244-
tape( 'the function returns `NaN` if provided `NaN`', function test( t ) {
244+
tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) {
245245
var v = acoth( NaN );
246246
t.equal( isnan( v ), true, 'returns NaN' );
247247
t.end();

0 commit comments

Comments
 (0)