Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipelines_store_spec.js.es6 « pipelines « commit « javascripts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 949734199790bd4c331cce8288de99f29d7640db (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
const PipelinesStore = require('~/commit/pipelines/pipelines_store');

describe('Store', () => {
  let store;

  beforeEach(() => {
    store = new PipelinesStore();
  });

  // unregister intervals and event handlers
  afterEach(() => gl.VueRealtimeListener.reset());

  it('should start with a blank state', () => {
    expect(store.state.pipelines.length).toBe(0);
  });

  it('should store an array of pipelines', () => {
    const pipelines = [
      {
        id: '1',
        name: 'pipeline',
      },
      {
        id: '2',
        name: 'pipeline_2',
      },
    ];

    store.storePipelines(pipelines);

    expect(store.state.pipelines.length).toBe(pipelines.length);
  });
});