Skip to content

Commit 3cde9c2

Browse files
fix: apply precommit hook
Co-authored-by: Ryan Christian <[email protected]>
1 parent d39a579 commit 3cde9c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/browser/render.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2014,10 +2014,10 @@ describe('render()', () => {
20142014
expect(scratch.innerHTML).to.equal('hello world');
20152015
});
20162016
it('should hydrate <template> tags ', () => {
2017-
const App = () => <template><h1>it works</h1></template>
2018-
scratch.innerHTML = `<template><h1>it works</h1></template>`
2017+
const App = () => <template><h1>it works</h1></template>;
2018+
scratch.innerHTML = `<template><h1>it works</h1></template>`;
20192019

20202020
render(<App />, scratch);
2021-
expect(scratch.innerHTML).to.equal(`<template><h1>it works</h1></template>`)
2021+
expect(scratch.innerHTML).to.equal(`<template><h1>it works</h1></template>`);
20222022
});
20232023
});

0 commit comments

Comments
 (0)