Minimal Fastify shape — `FastifyRestGateway` only stores it at construction.
()
| 33 | |
| 34 | /** Minimal Fastify shape — `FastifyRestGateway` only stores it at construction. */ |
| 35 | function appStub(): FastifyLike { |
| 36 | return { |
| 37 | server: {} as unknown as HttpServer, |
| 38 | listen: async () => 'http://127.0.0.1:0', |
| 39 | close: async () => {}, |
| 40 | }; |
| 41 | } |
| 42 | |
| 43 | describe('createAuthTokenService', () => { |
| 44 | let homeDir: string; |
no outgoing calls
no test coverage detected