diff options
Diffstat (limited to 'src/config.test.ts')
| -rw-r--r-- | src/config.test.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/config.test.ts b/src/config.test.ts index c7a8be4..b7c869f 100644 --- a/src/config.test.ts +++ b/src/config.test.ts @@ -290,10 +290,9 @@ describe("handleStartup", () => { const config = { hostDir: "/apple", publicDir: "/public", - targetUrl: "localhost" + targetUrl: "localhost", } as EnvConfig; - const confStartup = (): Promise<MongoClient> => - handleStartup(config, logger); + const confStartup = (): Promise<MongoClient> => handleStartup(config, logger); it("should pass back MongoClient", async () => { const superClient = {} as MongoClient; |
