(displayNames: string[])
| 180 | |
| 181 | describe("filtering", () => { |
| 182 | function createBasicTest(displayNames: string[]) { |
| 183 | return stringify({ |
| 184 | tests: displayNames.map((displayName) => ({ |
| 185 | displayName, |
| 186 | steps: [{ goal: "do something" }], |
| 187 | })), |
| 188 | }); |
| 189 | } |
| 190 | |
| 191 | async function getTestCaseNames(filenameFilter = "", testCaseFilter = "") { |
| 192 | const tests = await parseTestFiles( |
no outgoing calls
no test coverage detected
searching dependent graphs…