summaryrefslogtreecommitdiff
path: root/spec/frontend/repository/components/preview/index_spec.js
blob: 0112e6310f44c1fd0ae03c725744922572b89a60 (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 { shallowMount } from '@vue/test-utils';
import { GlLoadingIcon } from '@gitlab/ui';
import Preview from '~/repository/components/preview/index.vue';

let vm;
let $apollo;

function factory(blob) {
  $apollo = {
    query: jest.fn().mockReturnValue(Promise.resolve({})),
  };

  vm = shallowMount(Preview, {
    propsData: {
      blob,
    },
    mocks: {
      $apollo,
    },
  });
}

describe('Repository file preview component', () => {
  afterEach(() => {
    vm.destroy();
  });

  it('renders file HTML', () => {
    factory({
      webUrl: 'http://test.com',
      name: 'README.md',
    });

    vm.setData({ readme: { html: '<div class="blob">test</div>' } });

    expect(vm.element).toMatchSnapshot();
  });

  it('renders loading icon', () => {
    factory({
      webUrl: 'http://test.com',
      name: 'README.md',
    });

    vm.setData({ loading: 1 });

    expect(vm.find(GlLoadingIcon).exists()).toBe(true);
  });
});