Removes vscode download for smoke tests (#19795)

* Commenting out for now, but will delete in next commit

* Adds SQL carbon edit markers

* Uses multiline comments

* Formats file

* Code review changes

* Edit comment moved to same line

* Add ts-ignore directive to unused method
This commit is contained in:
Lewis Sanchez
2022-06-23 12:19:49 -07:00
committed by GitHub
parent d787418c9c
commit 0e09435285

View File

@@ -238,6 +238,7 @@ async function setupRepository(): Promise<void> {
}
}
// @ts-ignore ts6133 {{SQL CARBON EDIT}} Not used (see below)
async function ensureStableCode(): Promise<void> {
if (opts.web || !opts['build']) {
return;
@@ -290,7 +291,7 @@ async function setup(): Promise<void> {
console.log('*** Test data:', testDataPath);
console.log('*** Preparing smoketest setup...');
await ensureStableCode();
// await ensureStableCode(); {{SQL CARBON EDIT}} Smoketests no longer need to download VS Code since they run against ADS
await setupRepository();
console.log('*** Smoketest setup done!\n');