resource.cy.js 330 B

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