File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed
Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -36,17 +36,16 @@ const renderGatewayPortHealthDiagnostics = vi.fn(() => ["diag: unhealthy port"])
3636const renderRestartDiagnostics = vi . fn ( ( ) => [ "diag: unhealthy runtime" ] ) ;
3737const resolveGatewayPort = vi . fn ( ( ) => 18789 ) ;
3838const findGatewayPidsOnPortSync = vi . fn < ( port : number ) => number [ ] > ( ( ) => [ ] ) ;
39- const probeGateway =
40- vi . fn <
41- ( opts : {
42- url : string ;
43- auth ?: { token ?: string ; password ?: string } ;
44- timeoutMs : number ;
45- } ) => Promise < {
46- ok : boolean ;
47- configSnapshot : unknown ;
48- } >
49- > ( ) ;
39+ const probeGateway = vi . fn <
40+ ( opts : {
41+ url : string ;
42+ auth ?: { token ?: string ; password ?: string } ;
43+ timeoutMs : number ;
44+ } ) => Promise < {
45+ ok : boolean ;
46+ configSnapshot : unknown ;
47+ } >
48+ > ( ) ;
5049const isRestartEnabled = vi . fn < ( config ?: { commands ?: unknown } ) => boolean > ( ( ) => true ) ;
5150const loadConfig = vi . fn ( ( ) => ( { } ) ) ;
5251
You can’t perform that action at this time.
0 commit comments