Skip to content

Commit d6477e3

Browse files
committed
Reverted some files
1 parent f3f0697 commit d6477e3

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

src/shared/api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,6 @@ export const unboundModels = {
623623

624624
// CHANGE AS NEEDED FOR TESTING
625625
// PROD:
626-
// export const PEARAI_URL = "https://stingray-app-gb2an.ondigitalocean.app/pearai-server-api2/integrations/cline"
626+
export const PEARAI_URL = "https://stingray-app-gb2an.ondigitalocean.app/pearai-server-api2/integrations/cline"
627627
// DEV:
628-
export const PEARAI_URL = "http://localhost:8000/integrations/cline"
628+
// export const PEARAI_URL = "http://localhost:8000/integrations/cline"

src/test/extension.test.ts

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ suite("Roo Code Extension Test Suite", () => {
135135

136136
test("Views should be registered", () => {
137137
const view = vscode.window.createWebviewPanel(
138-
"pearai-roo-cline.SidebarProvider",
138+
"roo-cline.SidebarProvider",
139139
"Roo Code",
140140
vscode.ViewColumn.One,
141141
{},
@@ -184,17 +184,12 @@ suite("Roo Code Extension Test Suite", () => {
184184

185185
// Create webview panel with development options
186186
const extensionUri = extension.extensionUri
187-
const panel = vscode.window.createWebviewPanel(
188-
"pearai-roo-cline.SidebarProvider",
189-
"Roo Code",
190-
vscode.ViewColumn.One,
191-
{
192-
enableScripts: true,
193-
enableCommandUris: true,
194-
retainContextWhenHidden: true,
195-
localResourceRoots: [extensionUri],
196-
},
197-
)
187+
const panel = vscode.window.createWebviewPanel("roo-cline.SidebarProvider", "Roo Code", vscode.ViewColumn.One, {
188+
enableScripts: true,
189+
enableCommandUris: true,
190+
retainContextWhenHidden: true,
191+
localResourceRoots: [extensionUri],
192+
})
198193

199194
try {
200195
// Initialize webview with development context

0 commit comments

Comments
 (0)