v2
2/9/2021 by pushkine -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
let current_component = { $$: { on_mount: [] }};
function get_current_component(){
	return current_component;
}
function onMount1(arg1){
	get_current_component().$$.on_mount.push(arg1);
}
function onMount2(...args){
	get_current_component().$$.on_mount.push(...args);
}
const fn1 = function(){ return 3; }
const fn2 = function(){ return 2; }
delete caserun single casemove downdrag and drop case


ready



onMount1(fn1);
delete caserun single casemove upmove downdrag and drop case


ready



onMount2(fn1);
delete caserun single casemove upmove downdrag and drop case


ready



onMount1(fn1);
onMount1(fn2);
delete caserun single casemove updrag and drop case


ready



onMount2(fn1, fn2);
Test Case - click to add another test case
disable teardown JavaScript
teardown JavaScript
current_component.$$.on_mount.length = 0;
Output (DOM) - click to monitor output (DOM) while test is running
RUN