Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ docs/_site/
# Dotenv
.env.integration

#Local lint config
# Local lint config
.eslintrc.local.json

#Logging
# Logging
logs

# LanceDB
lancedb
6 changes: 5 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
.vscode-test/**
out/**
node_modules/**
integration-tests/**
src/**
.gitignore
.yarnrc
Expand Down Expand Up @@ -41,4 +42,7 @@ webview-ui/node_modules/**
!src/integrations/theme/default-themes/**

# Include icons
!assets/icons/**
!assets/icons/**

# LanceDB
lancedb/**
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ suite("Roo Code Extension", () => {

while (Date.now() - startTime < timeout) {
const commands = await vscode.commands.getCommands(true)
const missingCommands = []
const missingCommands: string[] = []

for (const cmd of expectedCommands) {
if (!commands.includes(cmd)) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
import * as path from "path"
import Mocha from "mocha"
import { glob } from "glob"
import { ClineAPI } from "../../exports/cline"
import { ClineProvider } from "../../core/webview/ClineProvider"
import * as vscode from "vscode"

declare global {
var api: ClineAPI
var provider: ClineProvider
var extension: vscode.Extension<ClineAPI> | undefined
var panel: vscode.WebviewPanel | undefined
}

export async function run(): Promise<void> {
// Create the mocha test
const mocha = new Mocha({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import * as assert from "assert"
import * as vscode from "vscode"

suite("Roo Code Modes", () => {
test("Should handle switching modes correctly", async function () {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import * as assert from "assert"
import * as vscode from "vscode"

suite("Roo Code Task", () => {
test("Should handle prompt and response correctly", async function () {
Expand Down
Loading
Loading