()
| 54 | }); |
| 55 | |
| 56 | function makeCtx(): AuthCommandContext { |
| 57 | return { |
| 58 | configDir: "/mock/config", |
| 59 | apiBaseUrl: "https://app.qawolf.com", |
| 60 | outputMode: "human", |
| 61 | isInteractive: false, |
| 62 | apiKeySource: "env", |
| 63 | platform: {} as unknown, |
| 64 | fs: makeMemoryFs(), |
| 65 | signals: makeNoopSignals(), |
| 66 | ui: makeFakeUI("human"), |
| 67 | log: () => makeNoopLogger(), |
| 68 | } as unknown as AuthCommandContext; |
| 69 | } |
| 70 | |
| 71 | function defaultFlags(): FlowsRunFlags { |
| 72 | return { |
no test coverage detected