mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
16 lines
395 B
JavaScript
16 lines
395 B
JavaScript
/**
|
|
* See: https://code.visualstudio.com/api/working-with-extensions/testing-extension
|
|
*/
|
|
|
|
import { defineConfig } from "@vscode/test-cli"
|
|
|
|
export default defineConfig({
|
|
label: "integrationTest",
|
|
files: "out/suite/**/*.test.js",
|
|
workspaceFolder: ".",
|
|
mocha: {
|
|
ui: "tdd",
|
|
timeout: 60000,
|
|
},
|
|
launchArgs: ["--enable-proposed-api=RooVeterinaryInc.roo-cline", "--disable-extensions"],
|
|
})
|