19 lines
453 B
JavaScript
19 lines
453 B
JavaScript
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', () => {
|
|
expect(() => {
|
|
new Pipelines(); // eslint-disable-line no-new
|
|
}).not.toThrow();
|
|
});
|
|
});
|