File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -142,9 +142,6 @@ suite("cloud/controller", () => {
142142
143143 await deps . controller . showMenu ( )
144144
145- // Deploy is called which shows the create/link picker (after team selection)
146- // First call is team picker (auto-selected since only one team)
147- // Second call is create/link picker
148145 assert . ok ( quickPickStub . calledOnce )
149146 const items = quickPickStub . firstCall . args [ 0 ] as any [ ]
150147 assert . ok ( items . some ( ( i : any ) => i . id === "link" ) )
@@ -557,7 +554,6 @@ suite("cloud/controller", () => {
557554 . resolves ( undefined )
558555 await deps . controller . showMenu ( )
559556
560- // Deploy is called which shows the create/link picker
561557 const items = quickPickStub . firstCall . args [ 0 ] as any [ ]
562558 assert . ok ( items . some ( ( i : any ) => i . id === "link" ) )
563559 assert . ok ( items . some ( ( i : any ) => i . id === "create" ) )
@@ -1226,10 +1222,6 @@ suite("cloud/controller", () => {
12261222 . withArgs ( editor2 . document . uri )
12271223 . returns ( workspaceFolder2 )
12281224
1229- // Deploy is called directly when not configured - stub it to return early
1230- // We just need to verify the menu handler calls deploy (not show a setup menu)
1231- // The deploy flow is tested elsewhere
1232-
12331225 dispose ( deps )
12341226 } )
12351227
You can’t perform that action at this time.
0 commit comments