mirror of https://github.com/sveltejs/svelte
commit
9f154e92a2
@ -0,0 +1,17 @@
|
|||||||
|
export default {
|
||||||
|
warnings: [{
|
||||||
|
code: "custom-element-no-tag",
|
||||||
|
message: "No custom element 'tag' option was specified. To automatically register a custom element, specify a name with a hyphen in it, e.g. <svelte:options tag=\"my-thing\"/>. To hide this warning, use <svelte:options tag={null}/>",
|
||||||
|
pos: 0,
|
||||||
|
start: {
|
||||||
|
character: 0,
|
||||||
|
column: 0,
|
||||||
|
line: 1
|
||||||
|
},
|
||||||
|
end: {
|
||||||
|
character: 0,
|
||||||
|
column: 0,
|
||||||
|
line: 1
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
};
|
@ -0,0 +1,5 @@
|
|||||||
|
<script>
|
||||||
|
export let name;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<h1>Hello {name}!</h1>
|
@ -0,0 +1,12 @@
|
|||||||
|
import * as assert from 'assert';
|
||||||
|
import CustomElement from './main.svelte';
|
||||||
|
|
||||||
|
export default function (target) {
|
||||||
|
customElements.define('no-tag', CustomElement);
|
||||||
|
target.innerHTML = `<no-tag name="world"></no-tag>`;
|
||||||
|
|
||||||
|
const el = target.querySelector('no-tag');
|
||||||
|
const h1 = el.shadowRoot.querySelector('h1');
|
||||||
|
|
||||||
|
assert.equal(h1.textContent, 'Hello world!');
|
||||||
|
}
|
Loading…
Reference in new issue