summaryrefslogtreecommitdiff
path: root/spec/javascripts/environments/environment_stop_spec.js
blob: 01055e3f255110a6e8bb4d20c665e2a79fccba5d (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
import Vue from 'vue';
import stopComp from '~/environments/components/environment_stop';

describe('Stop Component', () => {
  let StopComponent;
  let component;
  let spy;
  const stopURL = '/stop';

  beforeEach(() => {
    StopComponent = Vue.extend(stopComp);
    spy = jasmine.createSpy('spy').and.returnValue(Promise.resolve());
    spyOn(window, 'confirm').and.returnValue(true);

    component = new StopComponent({
      propsData: {
        stopUrl: stopURL,
        service: {
          postAction: spy,
        },
      },
    }).$mount();
  });

  it('should render a button to stop the environment', () => {
    expect(component.$el.tagName).toEqual('BUTTON');
    expect(component.$el.getAttribute('title')).toEqual('Stop');
  });

  it('should call the service when an action is clicked', () => {
    component.$el.click();
    expect(spy).toHaveBeenCalled();
  });
});