Unit tests added

This commit is contained in:
Piotr Pekala
2019-09-25 04:37:25 -07:00
parent d594fc0a36
commit 98c079175f
5 changed files with 20 additions and 15 deletions

View File

@ -64,6 +64,10 @@ export class MockedProgressService {
export class MockedNodeService {
public node = { label: {} } as Node;
constructor() {}
getDefaultCommand(): string {
return `putty.exe -telnet \%h \%p -wt \"\%d\" -gns3 5 -skin 4`;
}
updateLabel(): Observable<Node> {
return of(this.node);