aboutsummaryrefslogtreecommitdiff
path: root/src/config.test.ts
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2022-04-04 01:17:50 +0000
committerKevin J Hoerr <kjhoerr@protonmail.com>2022-04-04 01:17:50 +0000
commit97b0a2cafc7c32d264fb3317e8a5ddaea61978a3 (patch)
tree269c93c8c84a59d36cf41b5ec82b3ecb1682176d /src/config.test.ts
parenta87eb1608d354a6e9c8170e0fdc432a5f556c445 (diff)
downloadao-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.ts5
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;