v1
- by agent47darksoul 8/16/202100
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const range = (from, to) => {
	const values = [];
	
	for(let i = 0; i <= to - from; i++){
		values[i] = from + i;
	}
	
	return values;
}

delete caserun single casemove downdrag and drop case


ready



const source = range(1, 100);
const target = range(1, 100);

_.xor(source, target).length === 0
delete caserun single casemove upmove downdrag and drop case


ready



const source = range(1, 100);
const target = range(1, 100);

_.isEqual([...source].sort(),[...target].sort());
delete caserun single casemove upmove downdrag and drop case


ready



const source = range(1, 100);
const target = range(101, 200);

_.xor(source, target).length === 0
delete caserun single casemove updrag and drop case


ready



const source = range(1, 100);
const target = range(101, 200);

_.isEqual([...source].sort(),[...target].sort());
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