Skip to content

Commit 4d208c9

Browse files
authored
test: add missing tests
PR-URL: #2701 Ref: 62e247d#commitcomment-144735358 Ref: 62e247d#r144735333 Reviewed-by: Athan Reines <[email protected]>
1 parent f00c6b6 commit 4d208c9

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

lib/node_modules/@stdlib/math/base/special/powm1/lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function powm1( b, x ) {
121121
}
122122
result = pow( b, x ) - 1.0;
123123
if ( isinfinite( result ) || isnan( result ) ) {
124-
return 0.0 / 0.0; // NaN
124+
return NaN;
125125
}
126126
return result;
127127
}

lib/node_modules/@stdlib/math/base/special/powm1/test/test.js

+6
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,9 @@ tape( 'the function returns `NaN` if provided a `NaN` for the base', function te
141141
t.equal( isnan( y ), true, 'returns NaN' );
142142
t.end();
143143
});
144+
145+
tape( 'the function returns `NaN` if provided a `1e308` for the base and `2.0` for the exponent', function test( t ) {
146+
var y = powm1( 1e308, 2.0 );
147+
t.equal( isnan( y ), true, 'returns expected value' );
148+
t.end();
149+
});

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

+6
Original file line numberDiff line numberDiff line change
@@ -150,3 +150,9 @@ tape( 'the function returns `NaN` if provided a `NaN` for the base', opts, funct
150150
t.equal( isnan( y ), true, 'returns expected value' );
151151
t.end();
152152
});
153+
154+
tape( 'the function returns `NaN` if provided a `1e308` for the base and `2.0` for the exponent', opts, function test( t ) {
155+
var y = powm1( 1e308, 2.0 );
156+
t.equal( isnan( y ), true, 'returns expected value' );
157+
t.end();
158+
});

0 commit comments

Comments
 (0)