Skip to content

Commit

Permalink
10556-bug: update cerebral integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akuny committed Nov 19, 2024
1 parent 5e32191 commit 95e6f3d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions web-client/integration-tests/caseJourney.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ describe('Case journey', () => {

loginAs(cerebralTest, 'irspractitioner@example.com');
respondentViewsDashboard(cerebralTest);
const documentCountPreStipDecision = 6;
const documentsOnRecordCount = 5;
respondentAddsAnswer(cerebralTest, fakeFile, {
documentCount: documentCountPreStipDecision,
documentCount: documentsOnRecordCount,
});
respondentAddsStipulatedDecision(cerebralTest, fakeFile, {
documentCount: documentCountPreStipDecision + 1,
documentCount: documentsOnRecordCount + 1,
});
respondentAddsMotionWithBrief(cerebralTest, fakeFile, {
documentCount: documentCountPreStipDecision + 3,
documentCount: documentsOnRecordCount + 3,
});

loginAs(cerebralTest, 'docketclerk@example.com');
Expand Down
4 changes: 2 additions & 2 deletions web-client/integration-tests/petitionerFilesADocument.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ describe('petitioner files document', () => {

loginAs(cerebralTest, 'petitioner@example.com');
petitionerViewsCaseDetail(cerebralTest, {
documentCount: 4,
documentCount: 3,
});
petitionerFilesDocumentForCase(cerebralTest, fakeFile);
petitionerViewsCaseDetailAfterFilingDocument(cerebralTest, {
documentCount: 8,
documentCount: 7,
});
petitionerFilesAmendedMotion(cerebralTest, fakeFile);
});

0 comments on commit 95e6f3d

Please sign in to comment.