ws-nextjs-app/cypress/e2e/livePage/pageVisit.ts

Summary

Maintainability
A
0 mins
Test Coverage
export default ({ path }) => {
  describe('Live page visit', () => {
    it('visits page and passes', () => {
      cy.visit(path);
    });
  });
};