summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_shared/components/callout_spec.js
blob: 91208dfb31aa5ac5355aa179b491b4e28a6cb5da (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import { createLocalVue, shallowMount } from '@vue/test-utils';
import Callout from '~/vue_shared/components/callout.vue';

const TEST_MESSAGE = 'This is a callout message!';
const TEST_SLOT = '<button>This is a callout slot!</button>';

const localVue = createLocalVue();

describe('Callout Component', () => {
  let wrapper;

  const factory = options => {
    wrapper = shallowMount(localVue.extend(Callout), {
      localVue,
      ...options,
    });
  };

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

  it('should render the appropriate variant of callout', () => {
    factory({
      propsData: {
        category: 'info',
        message: TEST_MESSAGE,
      },
    });

    expect(wrapper.classes()).toEqual(['bs-callout', 'bs-callout-info']);

    expect(wrapper.element.tagName).toEqual('DIV');
  });

  it('should render accessibility attributes', () => {
    factory({
      propsData: {
        message: TEST_MESSAGE,
      },
    });

    expect(wrapper.attributes('role')).toEqual('alert');
    expect(wrapper.attributes('aria-live')).toEqual('assertive');
  });

  it('should render the provided message', () => {
    factory({
      propsData: {
        message: TEST_MESSAGE,
      },
    });

    expect(wrapper.element.innerHTML.trim()).toEqual(TEST_MESSAGE);
  });

  it('should render the provided slot', () => {
    factory({
      slots: {
        default: TEST_SLOT,
      },
    });

    expect(wrapper.element.innerHTML.trim()).toEqual(TEST_SLOT);
  });
});