Skip to content

Commit 9f73e96

Browse files
authored
fix(test): exit test command if karma finishes execution (#5618)
1 parent 9d6743e commit 9f73e96

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/commands/test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ abstract class TestCommandBase {
8989
liveSyncInfo,
9090
deviceDescriptors
9191
);
92+
// if we got here, it means karma exited with exit code 0 (success)
93+
process.exit(0);
9294
}
9395

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

0 commit comments

Comments
 (0)