Skip to content

Instantly share code, notes, and snippets.

@nottyo
Created October 29, 2018 03:32
Show Gist options
  • Save nottyo/e57017f86d20b73a7adb37a8df3b71f0 to your computer and use it in GitHub Desktop.
Save nottyo/e57017f86d20b73a7adb37a8df3b71f0 to your computer and use it in GitHub Desktop.
cypress_sample.spec.js
/// <reference types="Cypress" />
describe('Cypress Test', () => {
beforeEach(() => {
cy.visit('https://www.cypress.io')
})
it('should has text \'npm install cypress\'', () => {
cy.get('[class="filler"]').should('contain', 'npm install cypress')
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment