ci: Fix a flaky test (no-changelog) (#9851)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-06-24 18:52:10 +02:00
committed by GitHub
parent 164ec72c0d
commit 80ebe774bc

View File

@@ -148,7 +148,7 @@ describe('Test getResolvables', () => {
describe('shuffleArray', () => {
it('should shuffle array', () => {
const array = [1, 2, 3, 4, 5];
const array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const toShuffle = [...array];
shuffleArray(toShuffle);
expect(toShuffle).not.toEqual(array);