From f47e5123710139495bc24ab4bc7c80cd0c6d817e Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sat, 16 Dec 2023 17:26:41 +0300 Subject: [PATCH] Discard changes to slackme/main.test.ts --- slackme/main.test.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/slackme/main.test.ts b/slackme/main.test.ts index 0925f67..53c6b2e 100644 --- a/slackme/main.test.ts +++ b/slackme/main.test.ts @@ -52,7 +52,7 @@ describe("slackme", async () => { await assertSlackMessage({ command: "echo test", durationMS: 2, - output: "👨‍💻 `test` completed in 2ms", + output: "👨‍💻 `echo test` completed in 2ms", }); }); @@ -63,7 +63,7 @@ describe("slackme", async () => { \`$COMMAND\` executed`, output: `this command: -\`test\` +\`echo test\` executed`, }); }); @@ -73,7 +73,7 @@ executed`, command: "echo test", format: `$COMMAND took $DURATION`, durationMS: 150, - output: "test took 150ms", + output: "echo test took 150ms", }); }); @@ -82,7 +82,7 @@ executed`, command: "echo test", format: `$COMMAND took $DURATION`, durationMS: 15000, - output: "test took 15.0s", + output: "echo test took 15.0s", }); }); @@ -91,7 +91,7 @@ executed`, command: "echo test", format: `$COMMAND took $DURATION`, durationMS: 120000, - output: "test took 2m 0.0s", + output: "echo test took 2m 0.0s", }); }); @@ -100,7 +100,7 @@ executed`, command: "echo test", format: `$COMMAND took $DURATION`, durationMS: 60000 * 60, - output: "test took 1hr 0m 0.0s", + output: "echo test took 1hr 0m 0.0s", }); }); });