Skip to content

Commit

Permalink
fix(j-s): fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thorhildurt committed Dec 18, 2024
1 parent e5436ea commit 503ed03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/judicial-system/web/src/utils/arrayHelpers.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('arrayHelpers', () => {
{ input: undefined, expected: false },
{ input: null, expected: false },
{ input: [], expected: true },
{ input: [1], expected: true },
{ input: [1], expected: false },
]
testCases.forEach(({ input, expected }) => {
it(`should return ${expected} for input ${input}`, () => {
Expand Down

0 comments on commit 503ed03

Please sign in to comment.