v1
8/2/2021 by lmyers -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
class Foo {
	something = 1;
	
	bar() {
		this.something++;
	}
}

const foo = new Foo();
delete caserun single casemove downdrag and drop case


ready



const newfunc = foo.bar.bind(foo);
newfunc();
delete caserun single casemove upmove downdrag and drop case


ready



const newfunc = () => foo.bar();
newfunc();
delete caserun single casemove updrag and drop case


ready



const newfunc = function () { foo.bar(); };
newfunc();
Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN