mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
ci: Fix a flaky test (no-changelog) (#9851)
This commit is contained in:
parent
164ec72c0d
commit
80ebe774bc
|
@ -148,7 +148,7 @@ describe('Test getResolvables', () => {
|
||||||
|
|
||||||
describe('shuffleArray', () => {
|
describe('shuffleArray', () => {
|
||||||
it('should shuffle array', () => {
|
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];
|
const toShuffle = [...array];
|
||||||
shuffleArray(toShuffle);
|
shuffleArray(toShuffle);
|
||||||
expect(toShuffle).not.toEqual(array);
|
expect(toShuffle).not.toEqual(array);
|
||||||
|
|
Loading…
Reference in a new issue