Skip to content

Instantly share code, notes, and snippets.

@Giovasdf
Created October 3, 2024 15:56
Show Gist options
  • Select an option

  • Save Giovasdf/e29a701e599a1dcc2bcb93d0c6e28a81 to your computer and use it in GitHub Desktop.

Select an option

Save Giovasdf/e29a701e599a1dcc2bcb93d0c6e28a81 to your computer and use it in GitHub Desktop.
// https://on.cypress.io/api
describe('My First Test', () => {
it('visits the app root url', () => {
cy.visit('/')
cy.contains('h1', 'You did it!')
})
})
{
"compilerOptions": {
"target": "es5",
"lib": ["es5", "dom"],
"types": ["cypress"]
},
"include": ["./**/*", "../support/**/*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment