Remove tagName custom element test

This commit is contained in:
unknown 2022-06-17 14:42:31 -04:00
parent c562eebd27
commit 6fa286812a
2 changed files with 1 additions and 16 deletions

View file

@ -37,7 +37,7 @@ describe('Custom Elements', () => {
expect($('my-element template[shadowroot=open]')).to.have.lengthOf(1);
});
it('Hydration works with exported tagName', async () => {
it.skip('Hydration works with exported tagName', async () => {
const html = await fixture.readFile('/load/index.html');
const $ = cheerioLoad(html);

View file

@ -1,15 +0,0 @@
---
import '../components/my-element.js';
const title = 'My App';
---
<html>
<head>
<title>{title}</title>
</head>
<body>
<h1>{title}</h1>
<my-element client:load></my-element>
</body>
</html>