Skip to content

Commit

Permalink
Merge pull request #918 from datacite/y2k
Browse files Browse the repository at this point in the history
Y2k-type bug in test
  • Loading branch information
svogt0511 authored Jan 6, 2025
2 parents 2ce6986 + 10fb90e commit 6b2c5f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cypress/e2e/consortium_admin/info.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,13 +202,13 @@ describe('ACCEPTANCE: CONSORTIUM_ADMIN | INFO', () => {
});
});

it('can see info when using capitalized identifier URL subdirectory', () => {
it('can see info page when using capitalized identifier URL subdirectory', () => {
cy.visit('/providers/DC');
cy.url().should('include', '/providers/DC').then(() => {

cy.wait(waitTime3)
// Info page should be populated with non-zero graph data.
cy.get('.graphs > a').contains(/^0$/).should('not.exist')
// Info page should be populated with 3 graphs.
cy.get('.graphs > a').should('have.length', 3)
});
});
});

0 comments on commit 6b2c5f3

Please sign in to comment.