(rows: CsvRow[])
| 237 | } |
| 238 | |
| 239 | function csvRowsToTestCases(rows: CsvRow[]): TestCase[] { |
| 240 | return rows.map((row, idx) => { |
| 241 | const test = testCaseFromCsvRow(row); |
| 242 | test.description ||= `Row #${idx + 1}`; |
| 243 | return test; |
| 244 | }); |
| 245 | } |
| 246 | |
| 247 | function getStandaloneTestsFileMetadata( |
| 248 | varsPath: string, |
no test coverage detected
searching dependent graphs…