Skip to content

Commit 8983ed6

Browse files
committed
test: add missing test
--- 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 ---
1 parent 68894a1 commit 8983ed6

File tree

1 file changed

+6
-0
lines changed
  • lib/node_modules/@stdlib/complex/float64/base/mul/test

1 file changed

+6
-0
lines changed

lib/node_modules/@stdlib/complex/float64/base/mul/test/test.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,9 @@ tape( 'attached to the main export is an `assign` method', function test( t ) {
3838
t.strictEqual( isMethod( mul, 'assign' ), true, 'returns expected value' );
3939
t.end();
4040
});
41+
42+
tape( 'attached to the main export is a `strided` method', function test( t ) {
43+
t.ok( true, __filename );
44+
t.strictEqual( isMethod( mul, 'strided' ), true, 'returns expected value' );
45+
t.end();
46+
});

0 commit comments

Comments
 (0)