From b8070e34e9fa5a24216bfdfc290e6f83fba7663b Mon Sep 17 00:00:00 2001 From: Niraj Date: Mon, 18 Nov 2024 15:12:16 +0545 Subject: [PATCH] chore: remove test.slow() as global timeout is increased --- .../constitutionalDelegateAlternate.spec.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/integration_test/tests/2-3-constitutional-delegates-alternate/constitutionalDelegateAlternate.spec.ts b/integration_test/tests/2-3-constitutional-delegates-alternate/constitutionalDelegateAlternate.spec.ts index 2274a8d..37d543c 100644 --- a/integration_test/tests/2-3-constitutional-delegates-alternate/constitutionalDelegateAlternate.spec.ts +++ b/integration_test/tests/2-3-constitutional-delegates-alternate/constitutionalDelegateAlternate.spec.ts @@ -112,7 +112,6 @@ test.describe('Vote', () => { * Acceptance Criteria: Given that I am a voter on the page of an open poll and I have already voted, when I vote again, then my vote is counted. */ test(`${index + 2}-1C. Given active ${user}, and poll is open, can update casted vote`, async () => { - test.slow(); // yes vote await pollPage.voteYesBtn.click(); await expect(userPage.getByTestId('poll-page-vote-count')).toHaveText( @@ -138,7 +137,6 @@ test.describe('Vote', () => { */ test(`${index + 2}-1D. Given active ${user}, can choose not to vote`, async () => { - test.slow(); await pollPage.voteAbstainBtn.click(); await expect(userPage.getByTestId('vote-status')).toHaveText( @@ -159,7 +157,6 @@ test.describe('Vote', () => { */ test(`${index + 2}-1E: Active ${user} should be able to vote Yes, No, or Abstain on a poll`, async () => { - test.slow(); // yes vote await pollPage.voteYesBtn.click();