diff options
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/util/html.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/util/html.js b/test/unit/util/html.js index b5956e67..1652aee2 100644 --- a/test/unit/util/html.js +++ b/test/unit/util/html.js @@ -723,7 +723,7 @@ t.test(`Template - description errors`, t => { slot3: {type: 'bigint'}, slot4: {type: 'boolean'}, slot5: {type: 'symbol'}, - slot6: {type: 'html'}, + slot6: {type: 'html', mutable: false}, }, content: () => {}, })); @@ -739,7 +739,7 @@ t.test(`Template - slot value errors`, t => { basicBigint: {type: 'bigint'}, basicBoolean: {type: 'boolean'}, basicSymbol: {type: 'symbol'}, - basicHTML: {type: 'html'}, + basicHTML: {type: 'html', mutable: false}, }, content: slots => |