feat: scaffolding

This commit is contained in:
2026-02-03 12:55:49 -08:00
parent c8a82646f8
commit 8f3aeb9391
12 changed files with 190 additions and 111 deletions
+14 -6
View File
@@ -1,13 +1,21 @@
import { getGreeting } from '../support/app.po';
/**
* @copyright 2026 NHCarrigan
* @copyright 2026 NHCarrigan
* @license Naomi's Public License
*/
describe('frontend-e2e', () => {
beforeEach(() => cy.visit('/'));
import { getGreeting } from "../support/app.po";
it('should display welcome message', () => {
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');
cy.login("my-email@something.com", "myPassword");
// Function helper example, see `../support/app.po.ts` file
getGreeting().contains(/Welcome/);
});
});
});