0

visible -> exist in browser tests

This commit is contained in:
Gabe Kangas 2022-12-12 19:28:19 -08:00
parent 49b21dfcec
commit 6c169bc9b7
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -27,7 +27,7 @@ filterTests(['desktop'], () => {
// Loop over each identifier and verify it exists.
identifiers.forEach((identifier) => {
it(`Has identifier: ${identifier}`, () => {
cy.get(identifier).should('be.visible');
cy.get(identifier).should('exist');
});
});