()
| 13 | |
| 14 | // Lib extension binary is named differently on different platforms |
| 15 | function resolveBuiltBinary() { |
| 16 | const buildDir = `${__dirname}/build/${common.buildType}`; |
| 17 | const lib = 'sqlite_extension'; |
| 18 | const targetFile = fs.readdirSync(buildDir).find((file) => file.startsWith(lib)); |
| 19 | return path.join(buildDir, targetFile); |
| 20 | } |
| 21 | |
| 22 | const binary = resolveBuiltBinary(); |
| 23 |
no test coverage detected
searching dependent graphs…