Skip to content

Commit cd3d42d

Browse files
committed
Fmt
1 parent 66f1c3b commit cd3d42d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

slackme/main.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe("slackme", async () => {
3535
expect(exec.exitCode).toBe(0);
3636
exec = await execContainer(id, ["sh", "-c", "slackme"]);
3737
expect(exec.stdout.trim()).toStartWith(
38-
"slackme — Send a Slack notification when a command finishes"
38+
"slackme — Send a Slack notification when a command finishes",
3939
);
4040
});
4141

@@ -116,7 +116,7 @@ executed`,
116116

117117
const setupContainer = async (
118118
image = "alpine",
119-
vars: Record<string, string> = {}
119+
vars: Record<string, string> = {},
120120
) => {
121121
const state = await runTerraformApply(import.meta.dir, {
122122
agent_id: "foo",
@@ -159,7 +159,7 @@ const assertSlackMessage = async (opts: {
159159
"alpine/curl",
160160
opts.format && {
161161
slack_message: opts.format,
162-
}
162+
},
163163
);
164164
await writeCoder(id, "echo 'token'");
165165
let exec = await execContainer(id, ["sh", "-c", instance.script]);

0 commit comments

Comments
 (0)