diff --git a/test/runtime/index.ts b/test/runtime/index.ts index c72d9ef55504..ff6d1039d3bd 100644 --- a/test/runtime/index.ts +++ b/test/runtime/index.ts @@ -62,7 +62,7 @@ describe('runtime', () => { throw new Error('Forgot to remove `solo: true` from test'); } - const testName = `${dir} ${hydrate ? `(with hydration ${from_ssr_html ? 'from ssr rendered html' : ''})` : ''}`; + const testName = `${dir} ${hydrate ? `(with hydration${from_ssr_html ? ' from ssr rendered html' : ''})` : ''}`; (config.skip ? it.skip : solo ? it.only : it)(testName, () => { if (failed.has(dir)) { // this makes debugging easier, by only printing compiled output once diff --git a/test/runtime/samples/attribute-boolean-indeterminate/_config.js b/test/runtime/samples/attribute-boolean-indeterminate/_config.js index 38a6006feefc..d6e97ffc0e7f 100644 --- a/test/runtime/samples/attribute-boolean-indeterminate/_config.js +++ b/test/runtime/samples/attribute-boolean-indeterminate/_config.js @@ -7,11 +7,11 @@ export default { indeterminate: true }, - html: '', + html: "", // somehow ssr will render indeterminate="" // the hydrated html will still contain that attribute - ssrHtml: '', + ssrHtml: "", test({ assert, component, target }) { const input = target.querySelector('input');