Skip to content

Commit

Permalink
fix: set correct min value for --delay flag
Browse files Browse the repository at this point in the history
  • Loading branch information
marcincichocki authored Apr 8, 2021
1 parent ad8f108 commit ba9c446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform-node/cli/options/delay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { rangeParser } from './common';
const defaultValue = 75;

export function parser(value: string) {
const min = defaultValue;
const min = 0;
const max = 1000;

return rangeParser(value, min, max);
Expand Down

0 comments on commit ba9c446

Please sign in to comment.