smoke tests - drop 'tmp' and try to deal with tmp path ourself (#130102)

This commit is contained in:
Benjamin Pasero
2021-08-05 10:03:55 +02:00
parent 0f99773ce9
commit b96644b15f
4 changed files with 8 additions and 18 deletions

View File

@@ -294,8 +294,8 @@ export class Code {
}
async exit(): Promise<void> {
const success = await this.driver.exitApplication();
if (success === false) {
const veto = await this.driver.exitApplication();
if (veto === true) {
throw new Error('Code exit was blocked by a veto.');
}
}