Skip to content

Commit 7b243b9

Browse files
minor optims
1 parent 201f9e6 commit 7b243b9

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

src/providers/espresso.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ export default class Espresso {
561561

562562
this.isShuttingDown = true;
563563
this.clearLine();
564-
logger.warn('Received interrupt signal, stopping test runs...');
564+
logger.info('Received interrupt signal, stopping test runs...');
565565

566566
this.stopActiveRuns()
567567
.then(() => {

src/providers/maestro.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,6 @@ export default class Maestro {
199199
this.detectedPlatform = await this.detectPlatform();
200200
}
201201

202-
if (!this.options.quiet) {
203-
logger.info('Uploading Maestro App');
204-
}
205202
await this.uploadApp();
206203

207204
if (!this.options.quiet) {
@@ -289,6 +286,10 @@ export default class Maestro {
289286
}
290287
}
291288

289+
if (!this.options.quiet) {
290+
logger.info('Uploading Maestro App');
291+
}
292+
292293
// App doesn't exist (or checksum check skipped), upload it
293294
const result = await this.upload.upload({
294295
filePath: appPath,
@@ -1774,7 +1775,7 @@ export default class Maestro {
17741775

17751776
this.isShuttingDown = true;
17761777
this.clearLine();
1777-
logger.warn('Received interrupt signal, stopping test runs...');
1778+
logger.info('Received interrupt signal, stopping test runs...');
17781779

17791780
// Stop all active runs
17801781
this.stopActiveRuns()

src/providers/xcuitest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ export default class XCUITest {
564564

565565
this.isShuttingDown = true;
566566
this.clearLine();
567-
logger.warn('Received interrupt signal, stopping test runs...');
567+
logger.info('Received interrupt signal, stopping test runs...');
568568

569569
this.stopActiveRuns()
570570
.then(() => {

0 commit comments

Comments
 (0)