ad985a7a28
Remove .raw from JavaScript fixture file names
Closes #59201
See merge request gitlab-org/gitlab-ce!26430
(cherry picked from commit 79a45f7f02
)
19 lines
445 B
JavaScript
19 lines
445 B
JavaScript
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', () => {
|
|
expect(() => {
|
|
new Pipelines(); // eslint-disable-line no-new
|
|
}).not.toThrow();
|
|
});
|
|
});
|