Skip to content

Commit

Permalink
fix(test): exit test command if karma finishes execution (#5618)
Browse files Browse the repository at this point in the history
  • Loading branch information
edusperoni authored Feb 3, 2022
1 parent 9d6743e commit 9f73e96
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/commands/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ abstract class TestCommandBase {
liveSyncInfo,
deviceDescriptors
);
// if we got here, it means karma exited with exit code 0 (success)
process.exit(0);
}

async canExecute(args: string[]): Promise<boolean> {
Expand Down

0 comments on commit 9f73e96

Please sign in to comment.