| 4 | import { DEFAULT_QUEUE_KEEP_ALIVE_TIMEOUT } from "../../../src/queue/utils/constants"; |
| 5 | |
| 6 | export interface IQueueTestServerFactoryParams { |
| 7 | metadataDBPath: string |
| 8 | extentDBPath: string |
| 9 | persistencePathArray: StoreDestinationArray |
| 10 | enableDebugLog?: boolean |
| 11 | debugLogFilePath?: string |
| 12 | loose?: boolean |
| 13 | skipApiVersionCheck?: boolean |
| 14 | https?: boolean |
| 15 | oauth?: string |
| 16 | } |
| 17 | |
| 18 | export default class QueueTestServerFactory { |
| 19 | public createServer(params: IQueueTestServerFactoryParams): QueueServer { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…