@@ -53,7 +53,7 @@ tape( 'main export is a function', opts, function test( t ) {
53
53
t . end ( ) ;
54
54
} ) ;
55
55
56
- tape ( 'if provided `NaN` for any parameter, the function returns `NaN`' , function test ( t ) {
56
+ tape ( 'if provided `NaN` for any parameter, the function returns `NaN`' , opts , function test ( t ) {
57
57
var y = pdf ( NaN , 0.0 , 1.0 ) ;
58
58
t . equal ( isnan ( y ) , true , 'returns NaN' ) ;
59
59
y = pdf ( 0.0 , NaN , 1.0 ) ;
@@ -63,19 +63,19 @@ tape( 'if provided `NaN` for any parameter, the function returns `NaN`', functio
63
63
t . end ( ) ;
64
64
} ) ;
65
65
66
- tape ( 'if provided `+infinity` for `x` and a finite `mu` and `c`, the function returns `0`' , function test ( t ) {
66
+ tape ( 'if provided `+infinity` for `x` and a finite `mu` and `c`, the function returns `0`' , opts , function test ( t ) {
67
67
var y = pdf ( PINF , 0.0 , 1.0 ) ;
68
68
t . equal ( y , 0.0 , 'returns 0' ) ;
69
69
t . end ( ) ;
70
70
} ) ;
71
71
72
- tape ( 'if provided `-infinity` for `x` and a finite `mu` and `c`, the function returns `0`' , function test ( t ) {
72
+ tape ( 'if provided `-infinity` for `x` and a finite `mu` and `c`, the function returns `0`' , opts , function test ( t ) {
73
73
var y = pdf ( NINF , 0.0 , 1.0 ) ;
74
74
t . equal ( y , 0.0 , 'returns 0' ) ;
75
75
t . end ( ) ;
76
76
} ) ;
77
77
78
- tape ( 'if provided a nonpositive `c`, the function returns `NaN`' , function test ( t ) {
78
+ tape ( 'if provided a nonpositive `c`, the function returns `NaN`' , opts , function test ( t ) {
79
79
var y ;
80
80
81
81
y = pdf ( 2.0 , 2.0 , 0.0 ) ;
@@ -102,7 +102,7 @@ tape( 'if provided a nonpositive `c`, the function returns `NaN`', function test
102
102
t . end ( ) ;
103
103
} ) ;
104
104
105
- tape ( 'the function evaluates the pdf for `x` given positive `mu`' , function test ( t ) {
105
+ tape ( 'the function evaluates the pdf for `x` given positive `mu`' , opts , function test ( t ) {
106
106
var expected ;
107
107
var delta ;
108
108
var tol ;
@@ -131,7 +131,7 @@ tape( 'the function evaluates the pdf for `x` given positive `mu`', function tes
131
131
t . end ( ) ;
132
132
} ) ;
133
133
134
- tape ( 'the function evaluates the pdf for `x` given negative `mu`' , function test ( t ) {
134
+ tape ( 'the function evaluates the pdf for `x` given negative `mu`' , opts , function test ( t ) {
135
135
var expected ;
136
136
var delta ;
137
137
var tol ;
@@ -160,7 +160,7 @@ tape( 'the function evaluates the pdf for `x` given negative `mu`', function tes
160
160
t . end ( ) ;
161
161
} ) ;
162
162
163
- tape ( 'the function evaluates the pdf for `x` given large variance ( = large `c` )' , function test ( t ) {
163
+ tape ( 'the function evaluates the pdf for `x` given large variance ( = large `c` )' , opts , function test ( t ) {
164
164
var expected ;
165
165
var delta ;
166
166
var tol ;
0 commit comments