Files
vscode/test/sanity/package.json
Dmitriy Vasyura f5d4eb2260 Sanity tests pipeline and bug fixes (#287721)
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.
2026-01-14 11:18:40 +00:00

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"
}
}