summaryrefslogtreecommitdiff
path: root/spec/frontend/pages/dashboard/projects/index/components/customize_homepage_banner_spec.js
blob: b3a297ac2c5861c1441357a287e38ed99f0df2ac (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
50
import { shallowMount } from '@vue/test-utils';
import { GlBanner } from '@gitlab/ui';
import MockAdapter from 'axios-mock-adapter';
import CustomizeHomepageBanner from '~/pages/dashboard/projects/index/components/customize_homepage_banner.vue';
import axios from '~/lib/utils/axios_utils';

const svgPath = '/illustrations/background';
const provide = {
  svgPath,
  preferencesBehaviorPath: 'some/behavior/path',
  calloutsPath: 'call/out/path',
  calloutsFeatureId: 'some-feature-id',
};

const createComponent = () => {
  return shallowMount(CustomizeHomepageBanner, { provide });
};

describe('CustomizeHomepageBanner', () => {
  let mockAxios;
  let wrapper;

  beforeEach(() => {
    mockAxios = new MockAdapter(axios);
    wrapper = createComponent();
  });

  afterEach(() => {
    wrapper.destroy();
    wrapper = null;
    mockAxios.restore();
  });

  it('should render the banner when not dismissed', () => {
    expect(wrapper.contains(GlBanner)).toBe(true);
  });

  it('should close the banner when dismiss is clicked', async () => {
    mockAxios.onPost(provide.calloutsPath).replyOnce(200);
    expect(wrapper.contains(GlBanner)).toBe(true);
    wrapper.find(GlBanner).vm.$emit('close');

    await wrapper.vm.$nextTick();
    expect(wrapper.contains(GlBanner)).toBe(false);
  });

  it('includes the body text from options', () => {
    expect(wrapper.html()).toContain(wrapper.vm.$options.i18n.body);
  });
});