next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/messenger/components/right-drawer.component.spec.ts

26 lines
664 B
TypeScript
Raw Normal View History

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RightDrawerComponent } from './right-drawer.component';
describe('RightDrawerComponent', () => {
let component: RightDrawerComponent;
let fixture: ComponentFixture<RightDrawerComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ RightDrawerComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RightDrawerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});