mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 03:16:48 +03:00
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
'use strict';
|
|
|
|
import { SpecManager } from '../utils/spec-manager';
|
|
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 init virtual methods after init', () => {
|
|
spyOn(component, 'init');
|
|
component.ngOnInit();
|
|
|
|
component.init.calls.count().should.be.equal(1);
|
|
component.init.and.callThrough();
|
|
});
|
|
});
|
|
});
|