Start implementing direct messaging and continued developing the chatnav
This commit is contained in:
22
src/app/chat/elements/oimg/oimg.spec.ts
Normal file
22
src/app/chat/elements/oimg/oimg.spec.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Oimg } from './oimg';
|
||||
|
||||
describe('Oimg', () => {
|
||||
let component: Oimg;
|
||||
let fixture: ComponentFixture<Oimg>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Oimg],
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Oimg);
|
||||
component = fixture.componentInstance;
|
||||
await fixture.whenStable();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user