mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-30 00:46:29 +01:00
f45e2b70fd
This also includes elements of RFCs 2 and 3
18 lines
382 B
JavaScript
18 lines
382 B
JavaScript
export default {
|
|
skip_if_ssr: true,
|
|
|
|
props: {
|
|
raw: '<p>does not change</p>'
|
|
},
|
|
|
|
html: `<div><p>does not change</p></div>`,
|
|
|
|
test({ assert, component, target }) {
|
|
const p = target.querySelector('p');
|
|
|
|
component.raw = '<p>does not change</p>';
|
|
assert.equal(target.innerHTML, `<div><p>does not change</p></div>`);
|
|
assert.strictEqual(target.querySelector('p'), p);
|
|
}
|
|
};
|