/
outbreak
/
kilocode
Обзор
Документация
Войти
/
outbreak
/
kilocode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
apps/vscode-e2e/src/runTest.ts
52 строки
2 KB
Daniel
fix: resolve CI e2e test ETIMEDOUT errors when downloading VS Code (#7583)
05 сен 2025, 21:54
Не верифицирован
05 сен 2025, 21:54
687b379
Код
Авторство
О чём код?
import * as path from "path" import * as os from "os" import * as fs from "fs/promises" import { runTests } from "@vscode/test-electron" async function main() { try { // The folder containing the Extension Manifest package.json // Passed to `--extensionDevelopmentPath` const extensionDevelopmentPath = path.resolve(__dirname, "../../../src") // The path to the extension test script // Passed to --extensionTestsPath const extensionTestsPath = path.resolve(__dirname, "./suite/index") // Create a temporary workspace folder for tests const testWorkspace = await fs.mkdtemp(path.join(os.tmpdir(), "roo-test-workspace-")) // Get test filter from command line arguments or environment variable // Usage examples: // - npm run test:e2e -- --grep "write-to-file" // - TEST_GREP="apply-diff" npm run test:e2e // - TEST_FILE="task.test.js" npm run test:e2e const testGrep = process.argv.find((arg, i) => process.argv[i - 1] === "--grep") || process.env.TEST_GREP const testFile = process.argv.find((arg, i) => process.argv[i - 1] === "--file") || process.env.TEST_FILE // Pass test filters as environment variables to the test runner const extensionTestsEnv = { ...process.env, ...(testGrep && { TEST_GREP: testGrep }), ...(testFile && { TEST_FILE: testFile }), } // Download VS Code, unzip it and run the integration test await runTests({ extensionDevelopmentPath, extensionTestsPath, launchArgs: [testWorkspace], extensionTestsEnv, version: process.env.VSCODE_VERSION || "1.101.2", }) // Clean up the temporary workspace await fs.rm(testWorkspace, { recursive: true, force: true }) } catch (error) { console.error("Failed to run tests", error) process.exit(1) } } main()