25 lines
646 B
TypeScript
25 lines
646 B
TypeScript
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { TopBarComponent } from './top-bar.component';
|
||
|
|
||
|
describe('App::Layout::Messenger::TopBarComponent', () => {
|
||
|
let component: TopBarComponent;
|
||
|
let fixture: ComponentFixture<TopBarComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [TopBarComponent]
|
||
|
}).compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(TopBarComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|