()
| 44 | const binaryPath = "./release/azuritelinux" |
| 45 | |
| 46 | function throwOnMissingBinary() { |
| 47 | if (!existsSync(binaryPath)) { |
| 48 | throw new Error("The Linux binary does not exist. You must build it first using 'npm run build:linux'.") |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | describe("linux binary test", () => { |
| 53 |
no outgoing calls
no test coverage detected
searching dependent graphs…