From b4903d24c91cb3b885fbce101b3fce3e2b85805c Mon Sep 17 00:00:00 2001 From: Devin Binnie <52460000+devinbinnie@users.noreply.github.com> Date: Wed, 24 Nov 2021 09:18:53 -0500 Subject: [PATCH] Remove unnecessary test case (#1878) --- e2e/specs/server_management/add_server_modal.test.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/e2e/specs/server_management/add_server_modal.test.js b/e2e/specs/server_management/add_server_modal.test.js index e99825a1..a2edafa5 100644 --- a/e2e/specs/server_management/add_server_modal.test.js +++ b/e2e/specs/server_management/add_server_modal.test.js @@ -39,11 +39,6 @@ describe('Add Server Modal', function desc() { let newServerView; - it('MM-T4387 should open the new server modal', async () => { - const existing = Boolean(await this.app.windows().find((window) => window.url().includes('newServer'))); - existing.should.be.true; - }); - it('MM-T1312 should focus the first text input', async () => { const isFocused = await newServerView.$eval('#teamNameInput', (el) => el === document.activeElement); isFocused.should.be.true;