File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
packages/cursorless-vscode/src Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -44,13 +44,6 @@ export async function activate(
44
44
45
45
const { vscodeIDE, hats } = await createVscodeIde ( context ) ;
46
46
47
- const commandServerApi =
48
- vscodeIDE . runMode === "test"
49
- ? getFakeCommandServerApi ( )
50
- : await getCommandServerApi ( ) ;
51
-
52
- const treeSitter : TreeSitter = createTreeSitter ( parseTreeApi ) ;
53
-
54
47
const normalizedIde =
55
48
vscodeIDE . runMode === "production"
56
49
? undefined
@@ -60,6 +53,13 @@ export async function activate(
60
53
vscodeIDE . runMode === "test" ,
61
54
) ;
62
55
56
+ const commandServerApi =
57
+ vscodeIDE . runMode === "test"
58
+ ? getFakeCommandServerApi ( )
59
+ : await getCommandServerApi ( ) ;
60
+
61
+ const treeSitter : TreeSitter = createTreeSitter ( parseTreeApi ) ;
62
+
63
63
const {
64
64
commandRunner,
65
65
testCaseRecorder,
You can’t perform that action at this time.
0 commit comments