Skip to content

Commit

Permalink
Remove flaky test (#1689)
Browse files Browse the repository at this point in the history
  • Loading branch information
gokul-sol committed Aug 7, 2024
1 parent a40843c commit 12af008
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion functional-test/e2e/reinstatement.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import performAppealDormantOnCase from "../api/client/sscs/appeal.event";

let caseId : string;

test.describe("Reinstatement test", {tag: '@pipeline'}, async() => {
test.describe("Reinstatement test", async() => {

test.beforeEach("Case has to be Created", async () => {
caseId = await createCaseBasedOnCaseType('PIP');
Expand Down
2 changes: 1 addition & 1 deletion functional-test/e2e/upload-hearing.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import performAppealDormantOnCase from "../api/client/sscs/appeal.event";
let caseId : string;


test.describe("Hearing upload test", {tag: '@pipeline'}, async() => {
test.describe("Hearing upload test", async() => {

test.beforeEach("Case has to be Created", async () => {
caseId = await createCaseBasedOnCaseType('PIP');
Expand Down
2 changes: 1 addition & 1 deletion functional-test/e2e/upload-response.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ test.describe('Upload response tests for UCB workflow', {tag: '@pipeline'}, asyn
})


test.describe.serial('Error scenarios', {tag: '@pipeline'}, async () => {
test.describe.serial('Error scenarios', async () => {

test("Verify Upload response error scenario", async({ uploadResponseSteps }) => {
test.slow();
Expand Down
2 changes: 1 addition & 1 deletion functional-test/e2e/urgent-hearing.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import performAppealDormantOnCase from "../api/client/sscs/appeal.event";

let caseId : string;

test.describe("Urgent hearing test", {tag: '@pipeline'}, async() => {
test.describe("Urgent hearing test", async() => {

test.beforeEach("Case has to be Created", async () => {
caseId = await createCaseBasedOnCaseType('PIP');
Expand Down

0 comments on commit 12af008

Please sign in to comment.