diff --git a/src/core/webview/ActivityIndicator.ts b/src/core/webview/ActivityIndicator.ts index 3dccb4a4d6..20e161cd4e 100644 --- a/src/core/webview/ActivityIndicator.ts +++ b/src/core/webview/ActivityIndicator.ts @@ -32,7 +32,6 @@ export class ActivityIndicator { vscode.window.withProgress( { location: { viewId: ActivityIndicator.VIEW_ID }, - title: "Roo is working...", }, () => { return new Promise((resolve) => { diff --git a/src/core/webview/__tests__/ActivityIndicator.spec.ts b/src/core/webview/__tests__/ActivityIndicator.spec.ts index f625d8720e..97188aa67c 100644 --- a/src/core/webview/__tests__/ActivityIndicator.spec.ts +++ b/src/core/webview/__tests__/ActivityIndicator.spec.ts @@ -36,17 +36,6 @@ describe("ActivityIndicator", () => { ) }) - it("should include tooltip text in progress options", () => { - indicator.show() - - expect(mockWithProgress).toHaveBeenCalledWith( - expect.objectContaining({ - title: "Roo is working...", - }), - expect.any(Function), - ) - }) - it("should only call withProgress once when shown multiple times", () => { indicator.show() indicator.show()