diff options
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/util/html.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit/util/html.js b/test/unit/util/html.js index 6a352a3b..82f96b48 100644 --- a/test/unit/util/html.js +++ b/test/unit/util/html.js @@ -873,6 +873,13 @@ t.test(`Template - slot value errors`, t => { html.tag('span'), html.template({content: () => 'dog'}), html.blank(), + false && 'dogs', + null, + undefined, + html.tags([ + html.tag('span', 'usual'), + html.tag('span', 'i'), + ]), ], }), new AggregateError([ |