From 63e4fccd3ac0a02676f12aedd38fe5e7a80408b9 Mon Sep 17 00:00:00 2001 From: yasserfaraazkhan Date: Tue, 19 Dec 2023 16:22:04 +0530 Subject: [PATCH] chore: add test case ID to wrangler e2e tests (#25777) --- .../channels/move_thread/move_thread_from_dm_spec.js | 4 ++-- .../channels/move_thread/move_thread_from_gm_spec.js | 4 ++-- .../move_thread/move_thread_from_private_channel_spec.js | 4 ++-- .../move_thread/move_thread_from_public_channel_spec.js | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_dm_spec.js b/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_dm_spec.js index ed2094ae58..7090cc8ff9 100644 --- a/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_dm_spec.js +++ b/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_dm_spec.js @@ -79,7 +79,7 @@ describe('Move Thread', () => { cy.visit(`/${testTeam.name}/channels/${dmChannel.name}`); }); - it('Move root post from DM', () => { + it('MM-T5512_1 Move root post from DM', () => { // # Check if ... button is visible in last post right side cy.get(`#CENTER_button_${testPost.id}`).should('not.be.visible'); @@ -144,7 +144,7 @@ describe('Move Thread', () => { }); }); - it('Should not be able to move post from DM if configured off', () => { + it('MM-T5512_2 Should not be able to move post from DM if configured off', () => { cy.apiUpdateConfig({ WranglerSettings: { MoveThreadFromDirectMessageChannelEnable: false, diff --git a/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_gm_spec.js b/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_gm_spec.js index 6e58bef2cc..09406372ef 100644 --- a/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_gm_spec.js +++ b/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_gm_spec.js @@ -90,7 +90,7 @@ describe('Move thread', () => { cy.visit(`/${testTeam.name}/channels/${gmChannel.name}`); }); - it('Move post from GM (with at least 2 other users)', () => { + it('MM-T5514_1 Move post from GM (with at least 2 other users)', () => { // # Check if ... button is visible in last post right side cy.get(`#CENTER_button_${testPost.id}`).should('not.be.visible'); @@ -155,7 +155,7 @@ describe('Move thread', () => { }); }); - it('Should not be able to move post from GM if configured off', () => { + it('MM-T5514_2 Should not be able to move post from GM if configured off', () => { cy.apiUpdateConfig({ WranglerSettings: { MoveThreadFromGroupMessageChannelEnable: false, diff --git a/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_private_channel_spec.js b/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_private_channel_spec.js index cfd4cad393..4f18d012f0 100644 --- a/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_private_channel_spec.js +++ b/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_private_channel_spec.js @@ -66,7 +66,7 @@ describe('Move thread', () => { }); }); - it('Move root post from private channel', () => { + it('MM-T5511_1 Move root post from private channel', () => { // # Check if ... button is visible in last post right side cy.get(`#CENTER_button_${testPost.id}`).should('not.be.visible'); @@ -131,7 +131,7 @@ describe('Move thread', () => { }); }); - it('Should not be able to move post from private channel if configured off', () => { + it('MM-T5511_2 Should not be able to move post from private channel if configured off', () => { cy.apiUpdateConfig({ WranglerSettings: { MoveThreadFromPrivateChannelEnable: false, diff --git a/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_public_channel_spec.js b/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_public_channel_spec.js index 6f15a077a7..35d337e892 100644 --- a/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_public_channel_spec.js +++ b/e2e-tests/cypress/tests/integration/channels/move_thread/move_thread_from_public_channel_spec.js @@ -103,7 +103,7 @@ describe('Move Thread', () => { }); }); - it('Move root post from public channel to another public channel', () => { + it('MM-T5514 Move root post from public channel to another public channel', () => { // # Check if ... button is visible in last post right side cy.get(`#CENTER_button_${testPost.id}`).should('not.be.visible');