diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2022-04-04 01:17:50 +0000 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2022-04-04 01:17:50 +0000 |
| commit | 97b0a2cafc7c32d264fb3317e8a5ddaea61978a3 (patch) | |
| tree | 269c93c8c84a59d36cf41b5ec82b3ecb1682176d /src/config.test.ts | |
| parent | a87eb1608d354a6e9c8170e0fdc432a5f556c445 (diff) | |
| download | ao-coverage-97b0a2cafc7c32d264fb3317e8a5ddaea61978a3.tar.gz ao-coverage-97b0a2cafc7c32d264fb3317e8a5ddaea61978a3.tar.bz2 ao-coverage-97b0a2cafc7c32d264fb3317e8a5ddaea61978a3.zip | |
Formatting and linting fixes
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; |
