@nadeshikon/plugin-nextjs
Version:
Run Next.js seamlessly on Netlify
14 lines (10 loc) • 427 B
text/typescript
import { getGreeting } from '../support/app.po';
describe('demo-monorepo', () => {
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 demo-monorepo');
});
});