diff options
Diffstat (limited to 'app/tests/e2e/specs')
-rw-r--r-- | app/tests/e2e/specs/test.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/tests/e2e/specs/test.js b/app/tests/e2e/specs/test.js new file mode 100644 index 0000000..bba35a1 --- /dev/null +++ b/app/tests/e2e/specs/test.js @@ -0,0 +1,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') + }) +}) |