gitlab-org--gitlab-foss/spec/javascripts/pipelines_spec.js

20 lines
445 B
JavaScript
Raw Normal View History

import Pipelines from '~/pipelines';
describe('Pipelines', () => {
preloadFixtures('static/pipeline_graph.html.raw');
beforeEach(() => {
loadFixtures('static/pipeline_graph.html.raw');
});
it('should be defined', () => {
expect(Pipelines).toBeDefined();
});
it('should create a `Pipelines` instance without options', () => {
2018-10-17 03:13:26 -04:00
expect(() => {
new Pipelines();
}).not.toThrow(); //eslint-disable-line
});
});