mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 01:25:37 -05:00
* move * add inital test; need basic sqllite connection * before sqlite * sqlite * add smoke tests * working tests * fix app names * fix quick open * fix smoke tests * add win32 smoke tests * fix smoke test * fix win32 smoke * no continue * continue on error * add vscode smokes * remove vscode tests * continue on error * allow sqlite to use relative paths * add linux smoke tests * fix build files * use dispatch instead of select * fix linux build again * fix darwin * get select working * try and use screen shots * screen shots * remove smoke tests linux * try vscodes sqlite * fix compile * fix webpack * fix deps * try this again * try force a rebuild * try npm rebuild * add sqlite to be rebuilt * distro * try vscode sqlite again * revert changes to driver and simplify edits * fix compile * fix imports * move sqlite out * remove unneeded change * add extensions path * fix web tests * no continue on error
67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"name": "integration-tests",
|
|
"description": "Integration Tests",
|
|
"version": "0.0.1",
|
|
"publisher": "Microsoft",
|
|
"private": true,
|
|
"engines": {
|
|
"vscode": "*",
|
|
"azdata": "*"
|
|
},
|
|
"activationEvents": [
|
|
"onFileSystem:memfs",
|
|
"onDebug"
|
|
],
|
|
"main": "./out/main",
|
|
"extensionDependencies": [
|
|
"Microsoft.agent",
|
|
"Microsoft.import",
|
|
"Microsoft.profiler",
|
|
"Microsoft.mssql",
|
|
"Microsoft.notebook",
|
|
"Microsoft.azuredatastudio-postgresql"
|
|
],
|
|
"contributes": {
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "ADS Integration Test Configuration",
|
|
"properties": {
|
|
"test.testSetupCompleted": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": ""
|
|
}
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "test.setupIntegrationTest",
|
|
"title": "Setup Integration Test",
|
|
"category": "Test"
|
|
},
|
|
{
|
|
"command": "test.waitForExtensionsToLoad",
|
|
"title": "Wait For Extensions To Load",
|
|
"category": "Test"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:vscode-colorize-tests ./tsconfig.json",
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "3.4.34",
|
|
"@types/node": "^10.14.8",
|
|
"adstest": "github:ranasaria/adstest.git#0.0.2",
|
|
"chai": "3.5.0",
|
|
"mocha-junit-reporter": "^1.17.0",
|
|
"mocha-multi-reporters": "^1.1.7",
|
|
"vscode": "1.1.5"
|
|
},
|
|
"dependencies": {
|
|
"azure-keyvault": "^3.0.4",
|
|
"ms-rest-azure": "^2.6.0"
|
|
}
|
|
}
|