'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 { SpecManager } from '../../utils/SpecManager';; let testOptions; describe('Redoc components', () => { describe('SideMenu Component', () => { let builder; let component; let fixture; beforeEachProviders(() => [ provide(SpecManager, {useValue: new SpecManager()}) ]); beforeEach(async(inject([TestComponentBuilder, SpecManager, 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: ` ` }) class TestAppComponent { }