redoc/lib/components/SideMenu/side-menu.spec.ts

66 lines
1.5 KiB
TypeScript
Raw Normal View History

2015-12-21 22:39:40 +03:00
'use strict';
2016-06-12 20:44:34 +03:00
import { getChildDebugElement } from '../../../tests/helpers';
2016-07-01 16:30:45 +03:00
import { Component } from '@angular/core';
2016-06-12 20:44:34 +03:00
import { OptionsService } from '../../services/index';
2015-12-21 22:39:40 +03:00
import {
2016-04-30 00:45:53 +03:00
inject,
2016-07-01 15:53:16 +03:00
async
2016-05-06 00:48:41 +03:00
} from '@angular/core/testing';
2016-09-02 23:18:31 +03:00
import { TestBed } from '@angular/core/testing';
2015-12-21 22:39:40 +03:00
2016-06-12 20:44:34 +03:00
import { MethodsList, SideMenu } from '../index';
2016-05-09 22:55:16 +03:00
2016-08-28 21:46:10 +03:00
import { SpecManager } from '../../utils/SpecManager';
2015-12-21 22:39:40 +03:00
2016-06-12 20:44:34 +03:00
let testOptions;
2016-05-09 22:55:16 +03:00
2015-12-21 22:39:40 +03:00
describe('Redoc components', () => {
2016-09-02 23:18:31 +03:00
beforeEach(() => {
TestBed.configureTestingModule({ declarations: [ TestAppComponent ] });
});
2015-12-21 22:39:40 +03:00
describe('SideMenu Component', () => {
let builder;
let component;
let fixture;
2016-07-01 15:53:16 +03:00
2016-09-02 23:18:31 +03:00
beforeEach(async(inject([SpecManager, OptionsService],
( specMgr, opts) => {
2016-06-12 20:44:34 +03:00
testOptions = opts;
testOptions.options = {
scrollYOffset: () => 0,
$scrollParent: window
2016-06-12 20:44:34 +03:00
};
return specMgr.load('/tests/schemas/extended-petstore.yml');
2016-04-30 00:45:53 +03:00
})));
2015-12-21 22:39:40 +03:00
2016-07-01 15:53:16 +03:00
beforeEach(() => {
2016-09-02 23:18:31 +03:00
fixture = TestBed.createComponent(TestAppComponent);
2016-07-01 15:53:16 +03:00
component = getChildDebugElement(fixture.debugElement, 'side-menu').componentInstance;
fixture.detectChanges();
2015-12-21 22:39:40 +03:00
});
2016-05-09 22:55:16 +03:00
afterEach(() => {
if (fixture) fixture.destroy();
});
2015-12-22 18:02:03 +03:00
2016-05-09 22:55:16 +03:00
it('should init component and component data', () => {
expect(component).not.toBeNull();
expect(component.data).not.toBeNull();
2015-12-21 22:39:40 +03:00
});
});
});
/** Test component that contains an ApiInfo. */
@Component({
selector: 'test-app',
2015-12-21 22:39:40 +03:00
template:
`<side-menu></side-menu>
<methods-list></methods-list>`
})
2016-06-13 20:54:24 +03:00
class TestAppComponent {
2015-12-21 22:39:40 +03:00
}