summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_shared/components/issue/confidential_issue_warning_spec.js
blob: 6df08f3ebe76f8ad463772b4b26c041d5010e856 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Vue from 'vue';
import confidentialIssue from '~/vue_shared/components/issue/confidential_issue_warning.vue';

describe('Confidential Issue Warning Component', () => {
  let vm;

  beforeEach(() => {
    const Component = Vue.extend(confidentialIssue);
    vm = new Component().$mount();
  });

  afterEach(() => {
    vm.$destroy();
  });

  it('should render confidential issue warning information', () => {
    expect(vm.$el.querySelector('i').className).toEqual('fa fa-eye-slash');
    expect(vm.$el.querySelector('span').textContent.trim()).toEqual('This is a confidential issue. Your comment will not be visible to the public.');
  });
});