| 24 | }; |
| 25 | |
| 26 | export interface StartedServices { |
| 27 | caddyBaseUrl: string; |
| 28 | network: StartedNetwork; |
| 29 | caddyProcess: ChildProcess; |
| 30 | backendProcess: ChildProcess; |
| 31 | frontendProcess: ChildProcess; |
| 32 | minioContainer: StartedTestContainer; |
| 33 | pgContainer: StartedPostgreSqlContainer; |
| 34 | } |
| 35 | |
| 36 | const MONOREPO_ROOT = path.resolve(__dirname, "../../../"); |
| 37 | const MINIO_ACCESS_KEY = "minio-admin"; |
nothing calls this directly
no outgoing calls
no test coverage detected