Skip to content

Commit cc1998c

Browse files
Add back statusChangedEvent (#4860)
1 parent 223f630 commit cc1998c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Extension/src/testHook.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@ export class TestHook implements CppToolsTestHook {
2121
}
2222

2323
public get valid(): boolean {
24-
return !!this.intelliSenseStatusChangedEvent;
24+
return !!this.intelliSenseStatusChangedEvent && !!this.statusChangedEvent;
2525
}
2626

2727
public updateStatus(status: IntelliSenseStatus): void {
2828
this.intelliSenseStatusChangedEvent.fire(status);
29+
this.statusChangedEvent.fire(status.status);
2930
}
3031

3132
public dispose(): void {

0 commit comments

Comments
 (0)