Welcome to mirror list, hosted at ThFree Co, Russian Federation.

editor_options_spec.js « lib « repo « javascripts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edbf5450dceba917afe92285f2420beb6d442b42 (plain)
1
2
3
4
5
6
7
import editorOptions from '~/ide/lib/editor_options';

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