25 lines
633 B
TypeScript
25 lines
633 B
TypeScript
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { GroupComponent } from './group.component';
|
||
|
|
||
|
describe('Chat::LeftSidenav::GroupComponent', () => {
|
||
|
let component: GroupComponent;
|
||
|
let fixture: ComponentFixture<GroupComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [GroupComponent]
|
||
|
}).compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(GroupComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|