28 lines
653 B
TypeScript
28 lines
653 B
TypeScript
import { TestBed, inject } from '@angular/core/testing';
|
|
|
|
import { RPCService } from './rpc.service';
|
|
|
|
describe('RPCService', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [RPCService]
|
|
});
|
|
});
|
|
|
|
it('should be created', inject([RPCService], (service: RPCService) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
|
|
it('apiService connect to server', inject([RPCService], (service: RPCService) => {
|
|
service.connect();
|
|
service.getConnectionStatus().subscribe(
|
|
(isConnected: boolean) => {
|
|
console.log('isConnected:' + isConnected);
|
|
}
|
|
);
|
|
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
|
|
});
|