Skip to content
Snippets Groups Projects

Linking front to backend

Merged Madeleine Stenberg Jonassen requested to merge Linking-front-to-backend into main
30 files
+ 7766
1
Compare changes
  • Side-by-side
  • Inline
Files
30
 
// https://on.cypress.io/api
 
 
describe('My First Test', () => {
 
it('visits the app root url', () => {
 
cy.visit('/')
 
cy.contains('h1', 'You did it!')
 
})
 
})
Loading