Add test to ensure <head> in components produces a warning

pull/18151/head
568cats 3 months ago
parent f9abdb6428
commit a4905410df

@ -0,0 +1,18 @@
import { test } from '../../assert';
export default test({
warnings: [{
code: "head_in_component",
message: "A `<head>` tag was detected in file `(unknown)`, component `_unknown_`, at line 1. This can lead to runtime errors. Did you mean to use `<svelte:head>`?\nhttps://svelte.dev/e/head_in_component",
start: {
line: 1,
character: 0,
column: 0
},
end: {
line: 3,
character: 73,
column: 7
}
}]
});

@ -0,0 +1,3 @@
<head>
<meta name="description" content="some description" />
</head>
Loading…
Cancel
Save