@@ -140,17 +140,21 @@ suite("Standard Workspace Test Suite", () => {
140
140
{ type : 'quickpick' , value : 'minimal' , description : 'Select minimal manifest' } ,
141
141
{ type : 'quickpick' , value : 'stm32' , description : 'Select STM32 toolchain' } ,
142
142
{ type : 'quickpick' , value : 'v4.2.0' , description : 'Select default configuration' } ,
143
- { type : 'input' , value : '' , description : 'Select additional west init args' } ,
144
- { type : 'quickpick' , value : 'automatic' , description : 'Select SDK Version' } ,
145
- { type : 'quickpick' , value : 'select specific' , description : 'Select specific toolchains' } ,
146
- { type : 'quickpick' , value : 'arm-zephyr-eabi' , description : 'Select ARM toolchain' , multiSelect : true }
143
+ { type : 'input' , value : '' , description : 'Select additional west init args' }
147
144
] ) ;
148
145
149
146
result = await vscode . commands . executeCommand (
150
147
"zephyr-ide.workspace-setup-standard"
151
148
) ;
152
149
assert . ok ( result , "Workspace setup should succeed" ) ;
153
150
151
+
152
+ uiMock . primeInteractions ( [
153
+ { type : 'quickpick' , value : 'automatic' , description : 'Select SDK Version' } ,
154
+ { type : 'quickpick' , value : 'select specific' , description : 'Select specific toolchains' } ,
155
+ { type : 'quickpick' , value : 'arm-zephyr-eabi' , description : 'Select ARM toolchain' , multiSelect : true }
156
+ ] ) ;
157
+
154
158
await monitorWorkspaceSetup ( ) ;
155
159
156
160
console . log ( "📁 Step 4: Creating project from template..." ) ;
0 commit comments