(options: BuildRuntimeApiServerOptions)
| 117 | } |
| 118 | |
| 119 | function buildTestRuntimeApiServer(options: BuildRuntimeApiServerOptions) { |
| 120 | return buildRuntimeApiServer({ |
| 121 | queueWorker: null, |
| 122 | durableMemoryWorker: null, |
| 123 | cronWorker: null, |
| 124 | bridgeWorker: null, |
| 125 | recallEmbeddingBackfillWorker: null, |
| 126 | enableAppHealthMonitor: false, |
| 127 | startAppsOnReady: false, |
| 128 | ...options, |
| 129 | }); |
| 130 | } |
| 131 | |
| 132 | async function createZipBuffer( |
| 133 | entries: Array<{ path: string; content: string | Buffer; mode?: number }> |
no test coverage detected