mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-22 18:55:56 +00:00
Contributes towards #279402 Make test/sanity NPM-install independent for faster initialization in the pipeline. Fixed pipeline and tests ro fully pass on Windows x64 and MacOS x64. Updated suite/test names to report nicely in ADO. Ensure temp dir name is expanded on Windows to avoid ~ expansion from CLI. Removed custom log file now that XML report is supported. Added option to turn headless browsing on/off.
25 lines
586 B
JSON
25 lines
586 B
JSON
{
|
|
"name": "code-oss-dev-sanity-test",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "./out/index.js",
|
|
"scripts": {
|
|
"postinstall": "playwright install --with-deps chromium webkit",
|
|
"compile": "tsc",
|
|
"start": "node ./out/index.js"
|
|
},
|
|
"dependencies": {
|
|
"minimist": "^1.2.8",
|
|
"mocha": "^11.7.5",
|
|
"mocha-junit-reporter": "^2.2.1",
|
|
"node-fetch": "^3.3.2",
|
|
"playwright": "^1.57.0",
|
|
"typescript": "^6.0.0-dev.20251110"
|
|
},
|
|
"devDependencies": {
|
|
"@types/minimist": "^1.2.5",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "22.x"
|
|
}
|
|
}
|