BigW Consortium Gitlab

pipelines_spec.js.es6 643 Bytes
//= require pipelines

(() => {
  describe('Pipelines', () => {
    fixture.preload('pipeline_graph');

    beforeEach(() => {
      fixture.load('pipeline_graph');
    });

    it('should be defined', () => {
      expect(window.gl.Pipelines).toBeDefined();
    });

    it('should create a `Pipelines` instance without options', () => {
      expect(() => { new window.gl.Pipelines(); }).not.toThrow(); //eslint-disable-line
    });

    it('should create a `Pipelines` instance with options', () => {
      const pipelines = new window.gl.Pipelines({ foo: 'bar' });

      expect(pipelines.pipelineGraph).toBeDefined();
    });
  });
})();