()
| 13 | 'ffi_test_library.so'); |
| 14 | |
| 15 | function ensureFixtureLibrary() { |
| 16 | if (!fs.existsSync(libraryPath)) { |
| 17 | throw new Error( |
| 18 | `Missing FFI fixture library: ${libraryPath}. ` + |
| 19 | 'Build it with `tools/test.py test/ffi/test-ffi-calls.js` first.', |
| 20 | ); |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | module.exports = { libraryPath, ensureFixtureLibrary }; |
no test coverage detected
searching dependent graphs…