From 97b0a2cafc7c32d264fb3317e8a5ddaea61978a3 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Mon, 4 Apr 2022 01:17:50 +0000 Subject: Formatting and linting fixes --- src/config.test.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/config.test.ts') 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 => - handleStartup(config, logger); + const confStartup = (): Promise => handleStartup(config, logger); it("should pass back MongoClient", async () => { const superClient = {} as MongoClient; -- cgit