(relPath: string)
| 3 | import * as path from "path"; |
| 4 | |
| 5 | function getFile(relPath: string): fs.ReadStream { |
| 6 | const testCsvPath = path.join(__dirname, relPath) |
| 7 | const csvFile = fs.createReadStream(testCsvPath) |
| 8 | return csvFile; |
| 9 | } |
| 10 | |
| 11 | describe("csv extractor", () => { |
| 12 | test("processCsvData", () => { |