generated from nhcarrigan/template
21 lines
513 B
TypeScript
21 lines
513 B
TypeScript
/**
|
|
* @copyright 2026 NHCarrigan
|
|
* @copyright 2026 NHCarrigan
|
|
* @license Naomi's Public License
|
|
*/
|
|
|
|
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/);
|
|
});
|
|
}); |