fix smoke test failure (#15276)

* add logging

* fix

* remove logging

* comment out code and add comments
This commit is contained in:
Alan Ren
2021-04-29 11:36:42 -07:00
committed by GitHub
parent cbe128dd6c
commit 8d482a06e8

View File

@@ -311,7 +311,9 @@ describe(`VSCode Smoke Tests (${opts.web ? 'Web' : 'Electron'})`, () => {
// });
// }
describe(`VSCode Smoke Tests (${opts.web ? 'Web' : 'Electron'})`, () => {
// {{SQL CARBON EDIT}} - Remove the nested test suite to make sure the suite setup is also applied to beforeEach and afterEach
// describe(`VSCode Smoke Tests (${opts.web ? 'Web' : 'Electron'})`, () => {
before(async function () {
const app = new Application(this.defaultOptions);
await app!.start(opts.web ? false : undefined);
@@ -335,5 +337,5 @@ describe(`VSCode Smoke Tests (${opts.web ? 'Web' : 'Electron'})`, () => {
if (!opts.web) { setupDataMultirootTests(); }
if (!opts.web) { setupDataLocalizationTests(); }
if (!opts.web) { setupLaunchTests(); }*/
});
// });
});