mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 12:21:13 -05:00
20 lines
414 B
JavaScript
20 lines
414 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-integration/test/**/*.test.js',
|
|
workspaceFolder: '.',
|
|
mocha: {
|
|
ui: 'tdd',
|
|
timeout: 60000,
|
|
},
|
|
launchArgs: [
|
|
'--enable-proposed-api=RooVeterinaryInc.roo-cline',
|
|
'--disable-extensions'
|
|
]
|
|
});
|