(filePath)
| 27 | } |
| 28 | |
| 29 | function readJsonl(filePath) { |
| 30 | return fs.readFileSync(filePath, 'utf8').trim().split(/\r?\n/).map((line) => JSON.parse(line)); |
| 31 | } |
| 32 | |
| 33 | assert.equal( |
| 34 | hashRecord({ b: 2, a: 1 }), |
no outgoing calls
no test coverage detected