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

let vm;

function factory(path, loading = false) {
  vm = shallowMount(Table, {
    propsData: {
      path,
    },
    mocks: {
      $apollo: {
        queries: {
          files: { loading },
        },
      },
    },
  });
}

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

  it.each`
    path            | ref
    ${'/'}          | ${'master'}
    ${'app/assets'} | ${'master'}
    ${'/'}          | ${'test'}
  `('renders table caption for $ref in $path', ({ path, ref }) => {
    factory(path);

    vm.setData({ ref });

    expect(vm.find('caption').text()).toEqual(
      `Files, directories, and submodules in the path ${path} for commit reference ${ref}`,
    );
  });

  it('renders loading icon', () => {
    factory('/', true);

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