Skip to content

Commit

Permalink
clean up tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Elko committed Nov 4, 2024
1 parent c3ba59f commit 9cc3820
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/remote-config/condition-evaluator.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -776,9 +776,9 @@ describe('ConditionEvaluator', () => {
{ seed: '', randomizationId: '😀', result: false },
{ seed: 'hêl£o', randomizationId: 'wørlÐ', result: false },
{ seed: 'řemøťe', randomizationId: 'çōnfįġ', result: true },
{ seed: 'long', randomizationId: Array.from({ length: 100 }).map(() => '.').join(''), result: true },
{ seed: 'very-long', randomizationId: Array.from({ length: 1000 }).map(() => '.').join(''), result: false },
]
{ seed: 'long', randomizationId: '.'.repeat(100), result: true },
{ seed: 'very-long', randomizationId: '.'.repeat(1000), result: false },
];

testCases.map(({ randomizationId, seed, result }) => {

Expand Down

0 comments on commit 9cc3820

Please sign in to comment.