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', () => {
|
2020-04-21 10:50:26 +02:00
|
|
|
let component: BaseComponent;
|
|
|
|
let fixture: ComponentFixture<BaseComponent>;
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [BaseComponent],
|
|
|
|
}).compileComponents();
|
|
|
|
}));
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(BaseComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2019-08-09 15:14:23 +02:00
|
|
|
});
|