1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-08-17 00:50:42 +03:00

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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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);