v1
- by waterplea 8/20/202000
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const x = 0
const y = 0
const width = 400;
const height = 200;
const array = Array.from({length: 100}, (_, i) => i);

function getViewBox() {
	return `${x} ${y} ${width} ${height}`;
}

function find99() {
	return array.find(item => item === 99);
}

function filterOdd() {
	return array.filter(item => item % 2);
}
delete caserun single casemove downdrag and drop case


ready



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


ready



find99();
delete caserun single casemove updrag and drop case


ready



filterOdd();
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