summaryrefslogtreecommitdiff
path: root/spec/frontend/pipelines/blank_state_spec.js
blob: 033bd5ccb73c8fd1703c790b0632d1d23eda7931 (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
import Vue from 'vue';
import component from '~/pipelines/components/blank_state.vue';
import mountComponent from '../helpers/vue_mount_component_helper';

describe('Pipelines Blank State', () => {
  let vm;
  let Component;

  beforeEach(() => {
    Component = Vue.extend(component);

    vm = mountComponent(Component, {
      svgPath: 'foo',
      message: 'Blank State',
    });
  });

  it('should render svg', () => {
    expect(vm.$el.querySelector('.svg-content img').getAttribute('src')).toEqual('foo');
  });

  it('should render message', () => {
    expect(vm.$el.querySelector('h4').textContent.trim()).toEqual('Blank State');
  });
});