@@ -68,15 +68,15 @@ tape( 'if provided `NaN` for any parameter, the function returns `NaN`', opts, f
68
68
t . end ( ) ;
69
69
} ) ;
70
70
71
- tape ( 'if provided a number outside `[0,1]` for `p` and a finite `lambda`, the function returns `NaN`' , function test ( t ) {
71
+ tape ( 'if provided a number outside `[0,1]` for `p` and a finite `lambda`, the function returns `NaN`' , opts , function test ( t ) {
72
72
var y = quantile ( 2.2 , 1.0 ) ;
73
73
t . equal ( isnan ( y ) , true , 'returns true' ) ;
74
74
y = quantile ( - 0.2 , 1.0 ) ;
75
75
t . equal ( isnan ( y ) , true , 'returns true' ) ;
76
76
t . end ( ) ;
77
77
} ) ;
78
78
79
- tape ( 'if provided `+infinity` for `lambda`, the function returns `NaN`' , function test ( t ) {
79
+ tape ( 'if provided `+infinity` for `lambda`, the function returns `NaN`' , opts , function test ( t ) {
80
80
var y ;
81
81
82
82
y = quantile ( 0.0 , PINF ) ;
@@ -94,7 +94,7 @@ tape( 'if provided `+infinity` for `lambda`, the function returns `NaN`', functi
94
94
t . end ( ) ;
95
95
} ) ;
96
96
97
- tape ( 'if provided a negative `lambda`, the function always returns `NaN`' , function test ( t ) {
97
+ tape ( 'if provided a negative `lambda`, the function always returns `NaN`' , opts , function test ( t ) {
98
98
var y ;
99
99
100
100
y = quantile ( 2.0 , - 1.0 ) ;
@@ -109,7 +109,7 @@ tape( 'if provided a negative `lambda`, the function always returns `NaN`', func
109
109
t . end ( ) ;
110
110
} ) ;
111
111
112
- tape ( 'the function evaluates the quantile for `x` given parameter `lambda`' , function test ( t ) {
112
+ tape ( 'the function evaluates the quantile for `x` given parameter `lambda`' , opts , function test ( t ) {
113
113
var expected ;
114
114
var lambda ;
115
115
var delta ;
0 commit comments