()
| 19 | await this.launchSmokeTests(); |
| 20 | } |
| 21 | private async launchSmokeTests() { |
| 22 | const env: Record<string, {}> = { |
| 23 | VSC_JUPYTER_SMOKE_TEST: '1', |
| 24 | CODE_EXTENSIONS_PATH: SMOKE_TEST_EXTENSIONS_DIR |
| 25 | }; |
| 26 | |
| 27 | await this.launchTest(env); |
| 28 | } |
| 29 | private async launchTest(customEnvVars: Record<string, {}>) { |
| 30 | await new Promise<void>((resolve, reject) => { |
| 31 | const env: Record<string, string> = { |