From 0571df1fb5ddcbe710b41d89ee4630062a345edd Mon Sep 17 00:00:00 2001 From: Smita Nachan Date: Sun, 20 Oct 2024 06:48:47 +0000 Subject: [PATCH] remove defaultProperties --- src/m365/pp/commands/copilot/copilot-get.spec.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/m365/pp/commands/copilot/copilot-get.spec.ts b/src/m365/pp/commands/copilot/copilot-get.spec.ts index 1490dcd13eb..cce5d6eeb2a 100644 --- a/src/m365/pp/commands/copilot/copilot-get.spec.ts +++ b/src/m365/pp/commands/copilot/copilot-get.spec.ts @@ -137,11 +137,6 @@ describe(commands.COPILOT_GET, () => { assert.notStrictEqual(command.description, null); }); - it('defines correct alias', () => { - const alias = command.alias(); - assert.deepStrictEqual(alias, [commands.CHATBOT_GET]); - }); - it('defines correct properties for the default output', () => { assert.deepStrictEqual(command.defaultProperties(), ['name', 'botid', 'publishedon', 'createdon', 'modifiedon']); });