v1
- by autumnlight 3/18/202300
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
// Set the number of iterations
const iterations = 1

// object to store the samples
const samples = {};

for (let i = 0; i < iterations; i++) {
  samples[crypto.randomUUID()] = crypto.randomUUID();
}

// Get an array of the keys in the samples object
const keys = Object.keys(samples)

// Create an empty array to store the key-value pairs as two-element arrays [Required by Map]
const initial = []
for (let i = 0; i<keys.length;i++) {
	initial.push([keys[i], samples[keys[i]]])
}
delete caserun single casemove downdrag and drop case


ready



const map = new Map(initial)
delete caserun single casemove updrag and drop case


ready



const map = new Map()
for (let i = 0; i<keys.length;i++) {
	map.set(keys[i], samples[keys[i]])
}
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