Skip to content

Commit 46aeae6

Browse files
Clean up comments
1 parent 1fa5c23 commit 46aeae6

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

src/test/cloud/controller.test.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)