chore: replace protractor with cypress

This commit is contained in:
Frank Strieter
2022-03-22 14:24:00 +01:00
parent d6f95e5308
commit 3ed601307b
6 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
describe('My First Test', () => {
it('Visits the initial project page', () => {
cy.visit('/')
cy.contains('Welcome')
cy.contains('sandbox app is running!')
})
})