23 lines
541 B
TypeScript
23 lines
541 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { Overview } from './overview';
|
|
|
|
describe('Overview', () => {
|
|
let component: Overview;
|
|
let fixture: ComponentFixture<Overview>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [Overview],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(Overview);
|
|
component = fixture.componentInstance;
|
|
await fixture.whenStable();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|