You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/reactive-values-text-node/_config.js

13 lines
219 B

export default {
html: '<div>same text</div>',
async test({ assert, target }) {
await new Promise((f) => setTimeout(f, 10));
assert.htmlEqual(
target.innerHTML,
`
<div>same text text</div>
`
);
}
};