We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 223f630 commit cc1998cCopy full SHA for cc1998c
Extension/src/testHook.ts
@@ -21,11 +21,12 @@ export class TestHook implements CppToolsTestHook {
21
}
22
23
public get valid(): boolean {
24
- return !!this.intelliSenseStatusChangedEvent;
+ return !!this.intelliSenseStatusChangedEvent && !!this.statusChangedEvent;
25
26
27
public updateStatus(status: IntelliSenseStatus): void {
28
this.intelliSenseStatusChangedEvent.fire(status);
29
+ this.statusChangedEvent.fire(status.status);
30
31
32
public dispose(): void {
0 commit comments