summaryrefslogtreecommitdiff
path: root/spec/javascripts/environments/environment_monitoring_spec.js
blob: f8d8223967ae82f7be2b8d28c3143cacc92bc6c0 (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
import Vue from 'vue';
import monitoringComp from '~/environments/components/environment_monitoring.vue';

describe('Monitoring Component', () => {
  let MonitoringComponent;
  let component;

  const monitoringUrl = 'https://gitlab.com';

  beforeEach(() => {
    MonitoringComponent = Vue.extend(monitoringComp);

    component = new MonitoringComponent({
      propsData: {
        monitoringUrl,
      },
    }).$mount();
  });

  describe('computed', () => {
    it('title', () => {
      expect(component.title).toEqual('Monitoring');
    });
  });

  it('should render a link to environment monitoring page', () => {
    expect(component.$el.getAttribute('href')).toEqual(monitoringUrl);
    expect(component.$el.querySelector('.fa-area-chart')).toBeDefined();
    expect(component.$el.getAttribute('data-original-title')).toEqual('Monitoring');
    expect(component.$el.getAttribute('aria-label')).toEqual('Monitoring');
  });
});