mirror of https://github.com/sveltejs/svelte
dont throw error if component is destroyed twice (closes #643)
parent
130701af2c
commit
962f04f4bf
@ -0,0 +1,6 @@
|
||||
export default {
|
||||
test(assert, component) {
|
||||
component.destroy();
|
||||
component.destroy();
|
||||
}
|
||||
};
|
@ -0,0 +1 @@
|
||||
<div/>
|
Loading…
Reference in new issue