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

20 lines
445 B
JavaScript
Raw Normal View History

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