()
| 20 | ); |
| 21 | |
| 22 | function ensureFixtureLibrary() { |
| 23 | if (!fs.existsSync(libraryPath)) { |
| 24 | throw new Error( |
| 25 | `Missing FFI test fixture library: ${libraryPath}. ` + |
| 26 | 'Build it first with `make build-ffi-tests` or the equivalent test build step.', |
| 27 | ); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | ensureFixtureLibrary(); |
| 32 |
no test coverage detected
searching dependent graphs…