Initial commit

This commit is contained in:
2024-08-21 11:26:35 +02:00
commit 9446fe60a8
41 changed files with 15107 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { getGreeting } from '../support/app.po';
describe('frontend-e2e', () => {
beforeEach(() => cy.visit('/'));
it('should display welcome message', () => {
// Custom command example, see `../support/commands.ts` file
cy.login('my-email@something.com', 'myPassword');
// Function helper example, see `../support/app.po.ts` file
getGreeting().contains(/Welcome/);
});
});