test(ssr): tests for utils and props rendering

This commit is contained in:
Evan You
2020-01-29 15:10:45 -05:00
parent 730d329f79
commit 6e06810add
9 changed files with 178 additions and 35 deletions

View File

@@ -15,8 +15,8 @@ export const isSpecialBooleanAttr = /*#__PURE__*/ makeMap(specialBooleanAttrs)
// The full list is needed during SSR to produce the correct initial markup.
export const isBooleanAttr = /*#__PURE__*/ makeMap(
specialBooleanAttrs +
`,async,autofocus,autoplay,controls,default,defer,disabled,hidden,ismap,` +
`loop,nomodule,open,required,reversed,scoped,seamless,` +
`,async,autofocus,autoplay,controls,default,defer,disabled,hidden,` +
`loop,open,required,reversed,scoped,seamless,` +
`checked,muted,multiple,selected`
)