feat: cypress setup for angular e2e tests

This commit is contained in:
Amadou Ada DIENE
2021-07-20 17:46:47 +02:00
parent 77b15bdfc4
commit 7a3d5d7d3a
11 changed files with 32865 additions and 31024 deletions

View File

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