mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 03:16:48 +03:00
003fba8651
Rename schemaMgr to specMgr fix error logs in tests
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
'use strict';
|
|
|
|
import { SpecManager } from '../utils/SpecManager';
|
|
import { BaseComponent } from '../components/base';
|
|
|
|
describe('Redoc components', () => {
|
|
describe('BaseComponent', () => {
|
|
let specMgr;
|
|
let component;
|
|
|
|
beforeAll(() => {
|
|
specMgr = new SpecManager();
|
|
specMgr._schema = {tags: []};
|
|
});
|
|
|
|
beforeEach(() => {
|
|
component = new BaseComponent(specMgr);
|
|
});
|
|
|
|
it('should set instance properties', () => {
|
|
component.specMgr.should.be.equal(specMgr);
|
|
//component.schema.should.be.of.type('object');
|
|
expect(component.componentSchema).toBeNull();
|
|
});
|
|
|
|
it('should set componentSchema based on pointer on ngOnInit', () => {
|
|
component.pointer = '/tags';
|
|
component.ngOnInit();
|
|
component.componentSchema.should.be.deepEqual(specMgr._schema.tags);
|
|
});
|
|
|
|
it('should call prepareModel and init virtual methods after init', () => {
|
|
spyOn(component, 'prepareModel');
|
|
spyOn(component, 'init');
|
|
component.ngOnInit();
|
|
|
|
component.prepareModel.calls.count().should.be.equal(1);
|
|
component.init.calls.count().should.be.equal(1);
|
|
component.prepareModel.and.callThrough();
|
|
component.init.and.callThrough();
|
|
});
|
|
});
|
|
});
|