summaryrefslogtreecommitdiff
path: root/spec/frontend/blob/components/blob_content_error_spec.js
blob: 58a9ee761df998075e56ec45419324934b97906e (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
import { shallowMount } from '@vue/test-utils';
import BlobContentError from '~/blob/components/blob_content_error.vue';

describe('Blob Content Error component', () => {
  let wrapper;
  const viewerError = '<h1 id="error">Foo Error</h1>';

  function createComponent() {
    wrapper = shallowMount(BlobContentError, {
      propsData: {
        viewerError,
      },
    });
  }

  beforeEach(() => {
    createComponent();
  });

  afterEach(() => {
    wrapper.destroy();
  });

  it('renders the passed error without transformations', () => {
    expect(wrapper.html()).toContain(viewerError);
  });
});