Skip to content

Commit 0e71b7f

Browse files
committed
test: fix stub signatures
1 parent 30d42d2 commit 0e71b7f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

lib/common/test/unit-tests/stubs.ts

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export class CommonLoggerStub implements ILogger {
8080
isVerbose(): boolean {
8181
return false;
8282
}
83+
clearScreen(): void {}
8384
}
8485

8586
export class ErrorsStub implements IErrors {

test/stubs.ts

+2
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,8 @@ export class LoggerStub implements ILogger {
139139
isVerbose(): boolean {
140140
return false;
141141
}
142+
143+
clearScreen(): void {}
142144
}
143145

144146
export class FileSystemStub implements IFileSystem {

0 commit comments

Comments
 (0)