v1
- by evnp 12/30/202100
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const len = 16;
delete caserun single casemove downdrag and drop case


ready



// Generate random hex string:
const bytes = crypto.getRandomValues(new Uint8Array(Math.ceil(len / 2)));
Array.from(bytes, (b) => b.toString(16).padStart(2, "0"))
  .join("")
  .slice(0, len); // for odd len values, need to trim the last char
delete caserun single casemove updrag and drop case


ready



// Generate random hex string:
Array.from({ length: len }, () =>
  Math.floor(Math.random() * 16).toString(16)
).join("");
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