summaryrefslogtreecommitdiff
path: root/spec/javascripts/ide/lib/editor_options_spec.js
blob: d149a883166983606a24c36de9d472eb26422339 (plain)
1
2
3
4
5
6
7
8
9
10
11
import editorOptions from '~/ide/lib/editor_options';

describe('Multi-file editor library editor options', () => {
  it('returns an array', () => {
    expect(editorOptions).toEqual(jasmine.any(Array));
  });

  it('contains readOnly option', () => {
    expect(editorOptions[0].readOnly).toBeDefined();
  });
});