summaryrefslogtreecommitdiff
path: root/spec/javascripts/repo/components/repo_editor_spec.js
blob: 85d55d171f91eaf733b783eac108742058f6c89a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import Vue from 'vue';
import repoEditor from '~/repo/components/repo_editor.vue';

describe('RepoEditor', () => {
  beforeEach(() => {
    const RepoEditor = Vue.extend(repoEditor);

    this.vm = new RepoEditor().$mount();
  });

  it('renders an ide container', (done) => {
    this.vm.openedFiles = ['idiidid'];
    this.vm.binary = false;

    Vue.nextTick(() => {
      expect(this.vm.shouldHideEditor).toBe(false);
      expect(this.vm.$el.id).toEqual('ide');
      expect(this.vm.$el.tagName).toBe('DIV');
      done();
    });
  });

  describe('when there are no open files', () => {
    it('does not render the ide', (done) => {
      this.vm.openedFiles = [];

      Vue.nextTick(() => {
        expect(this.vm.shouldHideEditor).toBe(true);
        expect(this.vm.$el.tagName).not.toBeDefined();
        done();
      });
    });
  });

  describe('when open file is binary and not raw', () => {
    it('does not render the IDE', (done) => {
      this.vm.binary = true;
      this.vm.activeFile = {
        raw: false,
      };

      Vue.nextTick(() => {
        expect(this.vm.shouldHideEditor).toBe(true);
        expect(this.vm.$el.tagName).not.toBeDefined();
        done();
      });
    });
  });
});