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/await-mount-and-unmount-imm.../_config.js

10 lines
232 B

export default {
html: 'Loading...',
async test({ assert, component, target }) {
await component.test();
assert.htmlEqual(target.innerHTML, '1');
assert.deepEqual(component.logs, ['mount 0', 'unmount 0', 'mount 1']);
}
};