From f7ac19efc8af0f4bdda909ef27e3db7a7b76ea78 Mon Sep 17 00:00:00 2001 From: Matthias Rolke Date: Thu, 5 Dec 2024 16:56:43 +0100 Subject: [PATCH] test: rename test case --- src/plugins/slack/index.e2e-spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/slack/index.e2e-spec.ts b/src/plugins/slack/index.e2e-spec.ts index 268229c8..23abeb43 100644 --- a/src/plugins/slack/index.e2e-spec.ts +++ b/src/plugins/slack/index.e2e-spec.ts @@ -19,10 +19,10 @@ describe(Slack.name, function () { agreeToTermsAndConditions: false, enableSalesCloudForSlack: false }; - it('should accept terms and conditions', async () => { + it('should accept terms and conditions and enable Sales Cloud for Slack', async () => { await plugin.run(configEnable); }); - it('should already be accepted', async () => { + it('should already be accepted and enabled', async () => { const res = await plugin.run(configEnable); assert.deepStrictEqual(res, { message: 'no action necessary' }); });