v2
- by venryx 7/1/202100
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



A();
function A() {
	try {
		B();
	} catch(er) {
		//console.log(er.message);
		window.t1 = er;
	}	
}
function B() {
	throw new Error("Test1");
}
delete caserun single casemove updrag and drop case


ready



A();
function A() {
	try {
		B();
	} catch(er) {
		//console.log(er);
		window.t1 = er;
	}	
}
function B() {
	throw "Test1";
}
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