@@ -55,11 +55,10 @@ describe('CommandBarSelectionMixedInput', () => {
5555 describe ( 'clearSelectionFirst behavior' , ( ) => {
5656 it ( 'should send clear selection command when clearSelectionFirst is true' , async ( ) => {
5757 const app = App . getDefaultSystems ( )
58- const executingEditor = new KclManager ( 'some-path' , {
58+ const executingEditor = new KclManager ( {
5959 commandBar : app . commands . actor ,
6060 settings : app . settings . actor ,
6161 wasmInstancePromise : app . wasmPromise ,
62- projectPath : 'some-project' ,
6362 } )
6463 const mockModelingSend = vi . spyOn (
6564 executingEditor . engineCommandManager ,
@@ -86,11 +85,10 @@ describe('CommandBarSelectionMixedInput', () => {
8685
8786 it ( 'should NOT send clear selection command when clearSelectionFirst is false' , async ( ) => {
8887 const app = App . getDefaultSystems ( )
89- const executingEditor = new KclManager ( 'some-path' , {
88+ const executingEditor = new KclManager ( {
9089 commandBar : app . commands . actor ,
9190 settings : app . settings . actor ,
9291 wasmInstancePromise : app . wasmPromise ,
93- projectPath : 'some-project' ,
9492 } )
9593 const mockModelingSend = vi . spyOn (
9694 executingEditor . engineCommandManager ,
@@ -114,11 +112,10 @@ describe('CommandBarSelectionMixedInput', () => {
114112
115113 it ( 'should NOT send clear selection command when clearSelectionFirst is undefined' , async ( ) => {
116114 const app = App . getDefaultSystems ( )
117- const executingEditor = new KclManager ( 'some-path' , {
115+ const executingEditor = new KclManager ( {
118116 commandBar : app . commands . actor ,
119117 settings : app . settings . actor ,
120118 wasmInstancePromise : app . wasmPromise ,
121- projectPath : 'some-project' ,
122119 } )
123120 const mockModelingSend = vi . spyOn (
124121 executingEditor . engineCommandManager ,
@@ -142,11 +139,10 @@ describe('CommandBarSelectionMixedInput', () => {
142139
143140 it ( 'should send clear selection command only once on mount' , async ( ) => {
144141 const app = App . getDefaultSystems ( )
145- const executingEditor = new KclManager ( 'some-path' , {
142+ const executingEditor = new KclManager ( {
146143 commandBar : app . commands . actor ,
147144 settings : app . settings . actor ,
148145 wasmInstancePromise : app . wasmPromise ,
149- projectPath : 'some-project' ,
150146 } )
151147 const mockModelingSend = vi . spyOn (
152148 executingEditor . engineCommandManager ,
@@ -185,11 +181,10 @@ describe('CommandBarSelectionMixedInput', () => {
185181
186182 it ( 'should set hasClearedSelection state after clearing' , async ( ) => {
187183 const app = App . getDefaultSystems ( )
188- const executingEditor = new KclManager ( 'some-path' , {
184+ const executingEditor = new KclManager ( {
189185 commandBar : app . commands . actor ,
190186 settings : app . settings . actor ,
191187 wasmInstancePromise : app . wasmPromise ,
192- projectPath : 'some-project' ,
193188 } )
194189 const mockModelingSend = vi . spyOn (
195190 executingEditor . engineCommandManager ,
0 commit comments