re subcribe on reconnect

This commit is contained in:
Peter Maquiran
2022-01-31 14:44:00 +01:00
parent 88e2a08781
commit 210a5ecbf0
2 changed files with 25 additions and 0 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { FileExprorerService } from './file-exprorer.service';
describe('FileExprorerService', () => {
let service: FileExprorerService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(FileExprorerService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
@@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class FileExprorerService {
constructor() { }
}