summaryrefslogtreecommitdiff
path: root/app/tests/e2e/specs/test.js
blob: bba35a14b41d47cd5c14b0102d7909e1eda2cb34 (plain)
1
2
3
4
5
6
7
8
// https://docs.cypress.io/api/introduction/api.html

describe('My First Test', () => {
  it('Visits the app root url', () => {
    cy.visit('/')
    cy.contains('ion-content', 'Tab 1 page')
  })
})