summaryrefslogtreecommitdiff
path: root/spec/javascripts/repo/lib/editor_options_spec.js
blob: b4887d063ed5dab6b2c788935cff390bad43b9fb (plain)
1
2
3
4
5
6
7
import editorOptions from '~/repo/lib/editor_options';

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