records.cy.js 324 B

1234567891011
  1. describe('Test records', () => {
  2. beforeEach(()=>{
  3. cy.visit("http://localhost:7001");
  4. cy.login();
  5. })
  6. it("test records", () => {
  7. cy.visit("http://localhost:7001");
  8. cy.visit("http://localhost:7001/records");
  9. cy.url().should("eq", "http://localhost:7001/records");
  10. });
  11. })