Remove tagName custom element test
This commit is contained in:
parent
c562eebd27
commit
6fa286812a
2 changed files with 1 additions and 16 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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>
|
Loading…
Reference in a new issue