v1
- by pdcribeiro 10/22/202100
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const original = { a: 1, b: 2, c: 3 };
const allowed = ['a', 'b'];
delete caserun single casemove downdrag and drop case


ready



Object.fromEntries(Object.entries(original).filter(
	([k, v]) => allowed.includes(k)
));
delete caserun single casemove upmove downdrag and drop case


ready



Object.assign({}, ...allowed.map(k => ({ [k]: original[k] })));
delete caserun single casemove updrag and drop case


ready



Object.fromEntries(allowed.map(k => [k, original[k]]));
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