devbook_ts/cypress/integration/smoke.spec.js
Ruidy Nemausat f931fb3770 🔧 set cypress up
- define a baseUrl in cypress.json
- create a smoke.spec.js to check config.
2020-05-12 10:03:34 +02:00

6 lines
117 B
JavaScript

describe('smoke', () => {
it('sees learn', () => {
cy.visit('/');
cy.get('a').contains('Learn');
});
});