ucap-lg-web/src/app/layouts/components/top-bar.component.spec.ts
2020-03-27 17:43:47 +09:00

25 lines
644 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { TopBarComponent } from './top-bar.component';
describe('app::layouts::common::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();
});
});