Skip to content

Commit

Permalink
PI-2035: Added activity log
Browse files Browse the repository at this point in the history
  • Loading branch information
pmcphee77 committed Mar 27, 2024
1 parent 55097cd commit 5b48ccc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions integration_tests/e2e/activityLog.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ context('Appointment', () => {
const page = Page.verifyOnPage(ActivityLogPage)
page.getCardHeader('timeline1').should('contain.text', 'Waiting for evidence')
})
it('Activity log page is rendered with without-outcome filter', () => {
cy.visit('/case/X000001/activity-log/waiting-for-evidence')
const page = Page.verifyOnPage(ActivityLogPage)
page.getCardHeader('timeline1').should('contain.text', 'Waiting for evidence')
})
it('Activity log page is rendered with complied-appointments filter', () => {
cy.visit('/case/X000001/activity-log/complied-appointments')
const page = Page.verifyOnPage(ActivityLogPage)
Expand All @@ -47,6 +42,11 @@ context('Appointment', () => {
const page = Page.verifyOnPage(ActivityLogPage)
page.getCardHeader('timeline1').should('contain.text', 'Failed to comply')
})
it('Activity log page is rendered waiting-for-evidence filter', () => {
cy.visit('/case/X000001/activity-log/waiting-for-evidence')
const page = Page.verifyOnPage(ActivityLogPage)
page.getCardHeader('timeline1').should('contain.text', 'Waiting for evidence')
})
it('Activity log page is rendered with acceptable absence filter', () => {
cy.visit('/case/X000001/activity-log/acceptable-absence-appointments')
const page = Page.verifyOnPage(ActivityLogPage)
Expand Down

0 comments on commit 5b48ccc

Please sign in to comment.