mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-23 05:01:49 +10:00
refactor(v4.0.0-alpha): beginning of a new era
This commit is contained in:
13
apps/client-e2e/src/e2e/app.cy.ts
Normal file
13
apps/client-e2e/src/e2e/app.cy.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import { getGreeting } from "../support/app.po";
|
||||
|
||||
describe("client", () => {
|
||||
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 client");
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user