Skip to content

Commit b8b1953

Browse files
TCA-60 #comment This commit purposely creates a failing test in order to review the ci integration #time 15m
1 parent 4926673 commit b8b1953

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

cypress/e2e/home/home.spec.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
describe('Landing Page', () => {
2-
beforeEach(() => cy.visit('/'))
3-
it('loads landing page should be successfully', () => {
4-
cy.get('[data-cy="root"]').should('be.visible')
5-
})
2+
3+
beforeEach(() => cy.visit('/'))
4+
5+
it('loads landing page should be successfully', () => {
6+
// TCA-60 temp add "not.be.visible" to test ci integration
7+
cy.get('[data-cy="root"]').should('not.be.visible')
8+
})
69
})

0 commit comments

Comments
 (0)