overleaf/services/web/test/unit_frontend/es/DummyTests.js

25 lines
530 B
JavaScript
Raw Normal View History

2018-03-06 05:11:04 -05:00
import CodeMirror from 'codemirror'
import fixture from './support/fixture'
const TEXTAREA_HTML = '<textarea>Test</textarea>'
describe('fixtures', function () {
beforeEach(function () {
this.textarea = fixture.load(TEXTAREA_HTML)
this.cm = CodeMirror.fromTextArea(this.textarea)
})
afterEach(() => {
fixture.cleanUp()
})
it('loads fixtures', function () {
expect(this.textarea.value).to.equal('Test')
})
it('works with CM', function () {
expect(this.cm.getValue()).to.equal('Test')
})
})