Skip to content

Commit f407e42

Browse files
committed
test: update the test.native.js
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 355db42 commit f407e42

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/arcsine/skewness/test

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/arcsine/skewness/test/test.native.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ tape( 'main export is a function', opts, function test( t ) {
4545
t.end();
4646
});
4747

48-
tape( 'if provided `NaN` for any parameter, the function returns `NaN`', function test( t ) {
48+
tape( 'if provided `NaN` for any parameter, the function returns `NaN`', opts, function test( t ) {
4949
var v = skewness( NaN, 0.5 );
5050
t.equal( isnan( v ), true, 'returns NaN' );
5151

@@ -55,7 +55,7 @@ tape( 'if provided `NaN` for any parameter, the function returns `NaN`', functio
5555
t.end();
5656
});
5757

58-
tape( 'if provided `a >= b`, the function returns `NaN`', function test( t ) {
58+
tape( 'if provided `a >= b`, the function returns `NaN`', opts, function test( t ) {
5959
var y;
6060

6161
y = skewness( 3.0, 2.0 );
@@ -73,7 +73,7 @@ tape( 'if provided `a >= b`, the function returns `NaN`', function test( t ) {
7373
t.end();
7474
});
7575

76-
tape( 'the function returns `0.0` as the skewness of an arcsine distribution ', function test( t ) {
76+
tape( 'the function returns `0.0` as the skewness of an arcsine distribution ', opts, function test( t ) {
7777
var a;
7878
var b;
7979
var i;

0 commit comments

Comments
 (0)