Skip to content

Commit

Permalink
fix(cli): terminate process after accept is done
Browse files Browse the repository at this point in the history
  • Loading branch information
Igmat committed Mar 7, 2018
1 parent 742a21c commit 6cf04ff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/baset-cli/src/commands/accept.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const acceptCommand: CommandModule = {
const tester = new Tester(argv.plugins, argv.options);
const results = await Promise.all(tester.accept(baselines));
results.forEach(result => console.log(`Baseline ${result} is written.`));
process.exit(0);
},
};
export = acceptCommand;

0 comments on commit 6cf04ff

Please sign in to comment.