Filters test files by a numerical range. Looks for files named like "test1.txt", "test2.txt", etc.
Array of test file names
Optional
Start of range (inclusive), optional
End of range (inclusive), optional
Filtered array of test files
const allTests = ['test1.txt', 'test2.txt', 'test3.txt'];const filtered = filterTestsByRange(allTests, 1, 2);// Returns: ['test1.txt', 'test2.txt'] Copy
const allTests = ['test1.txt', 'test2.txt', 'test3.txt'];const filtered = filterTestsByRange(allTests, 1, 2);// Returns: ['test1.txt', 'test2.txt']
Filters test files by a numerical range. Looks for files named like "test1.txt", "test2.txt", etc.