(dataDir: string)
| 121 | }; |
| 122 | |
| 123 | const readManifest = (dataDir: string) => { |
| 124 | const path = localServerManifestPath(dataDir); |
| 125 | if (!existsSync(path)) return null; |
| 126 | return parseExecutorLocalServerManifest(readFileSync(path, "utf8")); |
| 127 | }; |
| 128 | |
| 129 | const removeManifestIfOwnedBy = (dataDir: string, pid: number) => { |
| 130 | const manifest = readManifest(dataDir); |
no test coverage detected