Skip to content

Commit

Permalink
feat: Add constants for string validation length, test default timeou…
Browse files Browse the repository at this point in the history
…t, and default take limit

This commit adds three constants to the `constants.ts` file: `STRING_VALIDATION_LENGTH`, `TEST_DEFAULT_TIMEOUT`, and `DEFAULT_TAKE_LIMIT`. These constants are used for string validation length, test timeouts, and default take limits in the codebase.
  • Loading branch information
rafagomes committed Jun 27, 2024
1 parent 27613c6 commit 34a2b3b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/common/constants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const STRING_VALIDATION_LENGTH = 2;
export const TEST_DEFAULT_TIMEOUT = 10000;
export const DEFAULT_TAKE_LIMIT = 15;

0 comments on commit 34a2b3b

Please sign in to comment.