generated from nhcarrigan/template
feat: scaffolding
This commit is contained in:
@@ -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/);
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user