( customConfig?: RestServerConfig, )
| 32 | } |
| 33 | |
| 34 | export function aRestServerConfig( |
| 35 | customConfig?: RestServerConfig, |
| 36 | ): RestServerResolvedConfig { |
| 37 | return Object.assign( |
| 38 | { |
| 39 | port: 3000, |
| 40 | openApiSpec: {disabled: true}, |
| 41 | apiExplorer: {disabled: true}, |
| 42 | cors: {}, |
| 43 | expressSettings: {}, |
| 44 | router: {}, |
| 45 | }, |
| 46 | customConfig, |
| 47 | ); |
| 48 | } |
no outgoing calls
no test coverage detected