| 30 | } from "./mocks/observableApi.js"; |
| 31 | |
| 32 | interface MockDeployEffectsOptions { |
| 33 | apiKey?: string | null; |
| 34 | deployConfig?: DeployConfig | null; |
| 35 | isTty?: boolean; |
| 36 | outputColumns?: number; |
| 37 | debug?: boolean; |
| 38 | fixedInputStatTime?: Date; |
| 39 | fixedOutputStatTime?: Date; |
| 40 | buildManifest?: BuildManifest; |
| 41 | } |
| 42 | |
| 43 | class MockDeployEffects extends MockAuthEffects implements DeployEffects { |
| 44 | public logger = new MockLogger(); |
nothing calls this directly
no outgoing calls
no test coverage detected