mirror of https://github.com/sveltejs/svelte
commit
5375af53f1
@ -0,0 +1,3 @@
|
|||||||
|
<div>
|
||||||
|
<p>this is a paragraph</p>
|
||||||
|
</div>
|
@ -0,0 +1,24 @@
|
|||||||
|
import path from 'path';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
dev: true,
|
||||||
|
|
||||||
|
test(assert, component, target) {
|
||||||
|
const h1 = target.querySelector('h1');
|
||||||
|
const p = target.querySelector('p');
|
||||||
|
|
||||||
|
assert.deepEqual(h1.__svelte_meta.loc, {
|
||||||
|
file: path.relative(process.cwd(), path.resolve(__dirname, 'main.html')),
|
||||||
|
line: 0,
|
||||||
|
column: 0,
|
||||||
|
char: 0
|
||||||
|
});
|
||||||
|
|
||||||
|
assert.deepEqual(p.__svelte_meta.loc, {
|
||||||
|
file: path.relative(process.cwd(), path.resolve(__dirname, 'Foo.html')),
|
||||||
|
line: 1,
|
||||||
|
column: 1,
|
||||||
|
char: 7
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,10 @@
|
|||||||
|
<h1>this is a header</h1>
|
||||||
|
<Foo/>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
Foo: './Foo.html'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in new issue