From cd3d42d54ed31097aff72f1c7d981eb374aeea73 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Wed, 11 Oct 2023 12:46:03 -0500 Subject: [PATCH] Fmt --- slackme/main.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/slackme/main.test.ts b/slackme/main.test.ts index 4b1e338..4edf071 100644 --- a/slackme/main.test.ts +++ b/slackme/main.test.ts @@ -35,7 +35,7 @@ describe("slackme", async () => { expect(exec.exitCode).toBe(0); exec = await execContainer(id, ["sh", "-c", "slackme"]); expect(exec.stdout.trim()).toStartWith( - "slackme — Send a Slack notification when a command finishes" + "slackme — Send a Slack notification when a command finishes", ); }); @@ -116,7 +116,7 @@ executed`, const setupContainer = async ( image = "alpine", - vars: Record = {} + vars: Record = {}, ) => { const state = await runTerraformApply(import.meta.dir, { agent_id: "foo", @@ -159,7 +159,7 @@ const assertSlackMessage = async (opts: { "alpine/curl", opts.format && { slack_message: opts.format, - } + }, ); await writeCoder(id, "echo 'token'"); let exec = await execContainer(id, ["sh", "-c", instance.script]);