v1
10/25/2021 by lmyers -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const patterns = [
  'foo',
  'bar',
  'baz',
  'qux',
  'quux',
  'abc',
  'def',
  'ghi'
];

const re = new RegExp('(' + patterns.join('|') + ')');

const toTest = patterns.slice().sort();
delete caserun single casemove downdrag and drop case


ready



for (const path of toTest) {
	const isOkay = patterns.some((pat) => pat === path);	
}
delete caserun single casemove updrag and drop case


ready



for (const path of toTest) {
	const isOkay = re.test(path);
}
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