We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4926673 commit b8b1953Copy full SHA for b8b1953
cypress/e2e/home/home.spec.ts
@@ -1,6 +1,9 @@
1
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
- })
+
+ beforeEach(() => cy.visit('/'))
+ 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
+ })
9
})
0 commit comments