()
| 123 | } |
| 124 | |
| 125 | async function spawn(): Promise<RunningServer> { |
| 126 | const r = await startServer({ |
| 127 | serviceOverrides: [fixedTokenAuth()], |
| 128 | host: '127.0.0.1', |
| 129 | port: 0, |
| 130 | lockPath, |
| 131 | logger: silentLogger(), |
| 132 | coreProcessOptions: { homeDir: bridgeHome }, |
| 133 | }); |
| 134 | running.push(r); |
| 135 | return r; |
| 136 | } |
| 137 | |
| 138 | describe('startServer — lock + healthz smoke', () => { |
| 139 | it('acquires the lock and writes pid/port; close releases', async () => { |
no test coverage detected