mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Smoke tests run locally * Re-enable smoke tests for pipeline * Resolves merge conflict with distro * Runs smoke tests with xvfb * Updates distro commit hash to fix merge conflict * Install xvfb * Install xvfb for fail on error * Removing log path temporarily * Clarifies edit comments * Darwin SQL build publishes log files * Resolve merge conflicts * Revert "Resolve merge conflicts" This reverts commit fb53d5662745d4ba5c897be0b0c9eb2ed093a38e. * Update distro hash * List all files to find full product.json path * Fix script * Fix script * Adjust test path for arm64 * List all files for darwin * always list all files * Specify Darwin logs directory * Adjust publish log files condition * Fix condition * Removes apt from script * Add missing import * Fix issues stopping smoke tests from running * Disables failing tests * Updates distro hash * Remove list all files scripts * Clean up * Update distro hash
31 lines
911 B
JSON
31 lines
911 B
JSON
{
|
|
"name": "code-oss-dev-smoke-test",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "./src/main.js",
|
|
"scripts": {
|
|
"compile": "yarn --cwd ../automation compile && node ../../node_modules/typescript/bin/tsc",
|
|
"watch-automation": "yarn --cwd ../automation watch",
|
|
"watch-smoke": "node ../../node_modules/typescript/bin/tsc --watch --preserveWatchOutput",
|
|
"watch": "npm-run-all -lp watch-automation watch-smoke",
|
|
"mocha": "node ../node_modules/mocha/bin/mocha"
|
|
},
|
|
"dependencies": {
|
|
"@vscode/test-electron": "^2.3.2",
|
|
"mkdirp": "^1.0.4",
|
|
"ncp": "^2.0.0",
|
|
"node-fetch": "^2.6.7",
|
|
"rimraf": "3.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mkdirp": "^1.0.1",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/ncp": "2.0.1",
|
|
"@types/node": "16.x",
|
|
"@types/node-fetch": "^2.5.10",
|
|
"@types/rimraf": "3.0.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"watch": "^1.0.2"
|
|
}
|
|
}
|