You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
379 B
JavaScript

7 years ago
/* eslint-env mocha */
/* global cy */
import { editorVisible } from '../support'
describe('Gist', () => {
it('Should pull text from the first Gist file', () => {
cy.visit('/3208813b324d82a9ebd197e4b1c3bae8')
editorVisible()
cy.contains('Y-Combinator implemented in JavaScript')
cy.get('#downshift-input-JavaScript').should('have.value', 'JavaScript')
7 years ago
})
})