Skip to content

Commit 8e25aed

Browse files
authored
testing: wire up busy state in serialization (microsoft#159714)
Fixes microsoft#154659 I think I never just hooked this up
1 parent 47e556e commit 8e25aed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/api/common/extHostTypeConverters.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1763,7 +1763,7 @@ export namespace TestItem {
17631763
extId: TestId.fromExtHostTestItem(item, ctrlId).toString(),
17641764
label: item.label,
17651765
uri: URI.revive(item.uri),
1766-
busy: false,
1766+
busy: item.busy,
17671767
tags: item.tags.map(t => TestTag.namespace(ctrlId, t.id)),
17681768
range: editorRange.Range.lift(Range.from(item.range)),
17691769
description: item.description || null,
@@ -1794,7 +1794,7 @@ export namespace TestItem {
17941794
},
17951795
range: Range.to(item.range || undefined),
17961796
canResolveChildren: false,
1797-
busy: false,
1797+
busy: item.busy,
17981798
description: item.description || undefined,
17991799
sortText: item.sortText || undefined,
18001800
};

0 commit comments

Comments
 (0)