mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Add logging to ADS Web smoke tests, and skip failing tests. (#17353)
* Adds loggings to ADS pipeline * Skips notebook smoke tests for ADS web. * Skips failing create book dialog tests in web build * Ignores import tests ADS web * Groups related tests together for ADS Web and non-web * Updates distro commit hash
This commit is contained in:
@@ -108,7 +108,7 @@ steps:
|
|||||||
set -e
|
set -e
|
||||||
node ./node_modules/playwright/install.js
|
node ./node_modules/playwright/install.js
|
||||||
APP_ROOT=$(Agent.BuildDirectory)/vscode-reh-web-linux-x64
|
APP_ROOT=$(Agent.BuildDirectory)/vscode-reh-web-linux-x64
|
||||||
xvfb-run yarn smoketest --build "$(Agent.BuildDirectory)/vscode-reh-web-linux-x64" --web --headless --screenshots "$(Build.ArtifactStagingDirectory)/smokeshots"
|
xvfb-run yarn smoketest --build "$(Agent.BuildDirectory)/vscode-reh-web-linux-x64" --web --headless --screenshots "$(Build.ArtifactStagingDirectory)/smokeshots" --log "$(Build.ArtifactStagingDirectory)/logs/web/smoke.log"
|
||||||
displayName: Run smoke tests (Browser)
|
displayName: Run smoke tests (Browser)
|
||||||
continueOnError: true
|
continueOnError: true
|
||||||
condition: and(succeeded(), eq(variables['RUN_TESTS'], 'true'))
|
condition: and(succeeded(), eq(variables['RUN_TESTS'], 'true'))
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "azuredatastudio",
|
"name": "azuredatastudio",
|
||||||
"version": "1.33.0",
|
"version": "1.33.0",
|
||||||
"distro": "01b299c0f340f6cf9dc10290b3aadea449c7940f",
|
"distro": "77e165275b4fa492f172e2b2ff3b9193726bcb49",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Microsoft Corporation"
|
"name": "Microsoft Corporation"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -19,14 +19,16 @@ import * as mkdirp from 'mkdirp';
|
|||||||
export function main(isWeb: boolean = false): void {
|
export function main(isWeb: boolean = false): void {
|
||||||
if (isWeb) {
|
if (isWeb) {
|
||||||
setupQueryEditorWebTests();
|
setupQueryEditorWebTests();
|
||||||
|
setupNotebookViewTests();
|
||||||
|
setupAddRemoteBookDialogTests();
|
||||||
} else {
|
} else {
|
||||||
setupQueryEditorTests();
|
setupQueryEditorTests();
|
||||||
|
setupNotebookTests();
|
||||||
|
setupNotebookViewTests();
|
||||||
|
setupCreateBookDialogTests();
|
||||||
|
setupAddRemoteBookDialogTests();
|
||||||
|
setupImportTests();
|
||||||
}
|
}
|
||||||
setupNotebookTests();
|
|
||||||
setupNotebookViewTests();
|
|
||||||
setupCreateBookDialogTests();
|
|
||||||
setupAddRemoteBookDialogTests();
|
|
||||||
setupImportTests();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* eslint-disable no-sync */
|
/* eslint-disable no-sync */
|
||||||
|
|||||||
Reference in New Issue
Block a user