bb9e7a3f2c
Backport common class name for the tab content Backport more changes
26 lines
618 B
JavaScript
26 lines
618 B
JavaScript
import PipelineStore from '~/pipelines/stores/pipeline_store';
|
|
|
|
describe('Pipeline Store', () => {
|
|
let store;
|
|
|
|
beforeEach(() => {
|
|
store = new PipelineStore();
|
|
});
|
|
|
|
it('should set defaults', () => {
|
|
expect(store.state.pipeline).toEqual({});
|
|
});
|
|
|
|
describe('storePipeline', () => {
|
|
it('should store empty object if none is provided', () => {
|
|
store.storePipeline();
|
|
|
|
expect(store.state.pipeline).toEqual({});
|
|
});
|
|
|
|
it('should store received object', () => {
|
|
store.storePipeline({ foo: 'bar' });
|
|
expect(store.state.pipeline).toEqual({ foo: 'bar' });
|
|
});
|
|
});
|
|
});
|