v1
8/4/2021 by nombrekeff -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const moods = ['good', 'better', 'best'];
delete caserun single casemove downdrag and drop case


ready



moods.forEach((mood, index) => console.log(`${index}. ${mood}`));
delete caserun single casemove upmove downdrag and drop case


ready



for(let i = 0; i < moods.length; i++) {
  console.log(`${i}. ${moods[i]}`);
}
delete caserun single casemove updrag and drop case


ready



for([index, mood] of moods.entries()){
  console.log(`${index}. ${mood}`);
}
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