2019-08-09 15:14:23 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2019-08-10 16:57:36 +02:00
|
|
|
import { BaseComponent } from './base.component';
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2019-08-10 16:57:36 +02:00
|
|
|
describe('BaseComponent', () => {
|
|
|
|
let component: BaseComponent;
|
|
|
|
let fixture: ComponentFixture<BaseComponent>;
|
2019-08-09 15:14:23 +02:00
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2019-08-10 16:57:36 +02:00
|
|
|
declarations: [ BaseComponent ]
|
2019-08-09 15:14:23 +02:00
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2019-08-10 16:57:36 +02:00
|
|
|
fixture = TestBed.createComponent(BaseComponent);
|
2019-08-09 15:14:23 +02:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|