Skip to content

Commit bdb46d5

Browse files
committed
fix: test failure
--- 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 01c0299 commit bdb46d5

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/plot/vega/title/ctor/test

lib/node_modules/@stdlib/plot/vega/title/ctor/test/test.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,8 @@ tape( 'the constructor throws an error if provided an invalid `fontStyle` option
380380
var i;
381381

382382
values = [
383+
'Arial',
384+
'foo',
383385
5,
384386
NaN,
385387
null,
@@ -408,6 +410,9 @@ tape( 'the constructor throws an error if provided an invalid `fontWeight` optio
408410
var i;
409411

410412
values = [
413+
'foo',
414+
6,
415+
NaN,
411416
null,
412417
true,
413418
false,
@@ -903,7 +908,7 @@ tape( 'the constructor returns an instance having a `toJSON` method for serializ
903908
},
904909
'font': 'Arial',
905910
'fontSize': 12,
906-
'fontStyle': 'Arial',
911+
'fontStyle': 'italic',
907912
'fontWeight': 'bold',
908913
'frame': 'group',
909914
'limit': 100,
@@ -942,7 +947,7 @@ tape( 'the constructor returns an instance having a `toJSON` method for serializ
942947
},
943948
'font': 'Arial',
944949
'fontSize': 12,
945-
'fontStyle': 'Arial',
950+
'fontStyle': 'italic',
946951
'fontWeight': 'bold',
947952
'frame': 'group',
948953
'limit': 100,

0 commit comments

Comments
 (0)