mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 19:36:44 +03:00
74 lines
1.8 KiB
TypeScript
74 lines
1.8 KiB
TypeScript
'use strict';
|
|
|
|
import { getChildDebugElement } from '../../../tests/helpers';
|
|
import { Component, provide } from '@angular/core';
|
|
import { OptionsService } from '../../services/index';
|
|
|
|
import {
|
|
inject,
|
|
async,
|
|
beforeEach,
|
|
beforeEachProviders,
|
|
it
|
|
} from '@angular/core/testing';
|
|
|
|
import { TestComponentBuilder } from '@angular/compiler/testing';
|
|
|
|
import { MethodsList, SideMenu } from '../index';
|
|
|
|
import { SchemaManager } from '../../utils/SchemaManager';;
|
|
|
|
let testOptions;
|
|
|
|
describe('Redoc components', () => {
|
|
describe('SideMenu Component', () => {
|
|
let builder;
|
|
let component;
|
|
let fixture;
|
|
beforeEachProviders(() => [
|
|
provide(SchemaManager, {useValue: new SchemaManager()})
|
|
]);
|
|
beforeEach(async(inject([TestComponentBuilder, SchemaManager, OptionsService],
|
|
(tcb, schemaMgr, opts) => {
|
|
builder = tcb;
|
|
testOptions = opts;
|
|
testOptions.options = {
|
|
scrollYOffset: () => 0,
|
|
scrollParent: window
|
|
};
|
|
return schemaMgr.load('/tests/schemas/extended-petstore.yml');
|
|
})));
|
|
|
|
beforeEach((done) => {
|
|
builder.createAsync(TestAppComponent).then(_fixture => {
|
|
fixture = _fixture;
|
|
component = getChildDebugElement(fixture.debugElement, 'side-menu').componentInstance;
|
|
fixture.detectChanges();
|
|
done();
|
|
}, err => {
|
|
throw err;
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
if (fixture) fixture.destroy();
|
|
});
|
|
|
|
it('should init component and component data', () => {
|
|
expect(component).not.toBeNull();
|
|
expect(component.data).not.toBeNull();
|
|
});
|
|
});
|
|
});
|
|
|
|
/** Test component that contains an ApiInfo. */
|
|
@Component({
|
|
selector: 'test-app',
|
|
directives: [MethodsList, SideMenu],
|
|
template:
|
|
`<side-menu></side-menu>
|
|
<methods-list></methods-list>`
|
|
})
|
|
class TestAppComponent {
|
|
}
|