3.0 Beta 4
This commit is contained in:
22
src/app/chat/network-list/network-list.spec.ts
Normal file
22
src/app/chat/network-list/network-list.spec.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { NetworkList } from './network-list';
|
||||
|
||||
describe('NetworkList', () => {
|
||||
let component: NetworkList;
|
||||
let fixture: ComponentFixture<NetworkList>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [NetworkList],
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(NetworkList);
|
||||
component = fixture.componentInstance;
|
||||
await fixture.whenStable();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user