v1
- by lamik 9/19/202000
disable setup HTML
Setup HTML
<script
  src="https://code.jquery.com/jquery-3.5.1.min.js"
  integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
  crossorigin="anonymous"></script>
disable setup JavaScript
Setup JavaScript
let json = JSON.stringify(Array(1000).fill(0).reduce((a,c,i) => (a['field'+i]=getField(i),a) ,{}));

function getField(k) {
  let i=k%10;
  if(i==0) return false;
  if(i==1) return true;
  if(i==2) return k;
  if(i==3) return 0;
  if(i==4) return null;
  if(i==5) return [];
  if(i==6) return {};  
  if(i>=7) return "text"+k;
}
delete caserun single casemove downdrag and drop case


ready



return eval("(" + json + ')')
delete caserun single casemove upmove downdrag and drop case


ready



return (new Function('return ('+json+')'))()
delete caserun single casemove upmove downdrag and drop case


ready



return Function('return ('+json+')')()
delete caserun single casemove upmove downdrag and drop case


ready



return JSON.parse(json)
delete caserun single casemove updrag and drop case


ready



return $.parseJSON(json)
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