(filePath, rawBuf)
| 16 | } |
| 17 | |
| 18 | function expectMatches(filePath, rawBuf) { |
| 19 | assert.strictEqual( |
| 20 | fs.readFileSync(filePath, 'utf8'), |
| 21 | rawBuf.toString('utf8'), |
| 22 | ); |
| 23 | } |
| 24 | |
| 25 | describe('fs.readFileSync utf8 simdutf dispatch', () => { |
| 26 | it('empty file', () => { |
no test coverage detected