aboutsummaryrefslogtreecommitdiffstats
path: root/test/helpers/array-helpers.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/helpers/array-helpers.test.ts')
-rw-r--r--test/helpers/array-helpers.test.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/helpers/array-helpers.test.ts b/test/helpers/array-helpers.test.ts
index ee94bac80..662d6b828 100644
--- a/test/helpers/array-helpers.test.ts
+++ b/test/helpers/array-helpers.test.ts
@@ -7,6 +7,7 @@ describe('array_helpers', () => {
7 7
8 // Expect the arrays to be exactly the same 8 // Expect the arrays to be exactly the same
9 // when both are sorted alphabetically 9 // when both are sorted alphabetically
10 // eslint-disable-next-line sonar/no-alphabetical-sort
10 expect(shuffledArray.sort()).toEqual(originalArray.sort()); 11 expect(shuffledArray.sort()).toEqual(originalArray.sort());
11 }); 12 });
12}); 13});