Ensure fp.mergeAllWith accepts more than 2 sources. [closes #2786]

This commit is contained in:
John-David Dalton
2016-11-04 01:10:54 -07:00
parent fbb67f9dbe
commit 1b3815928d
3 changed files with 9 additions and 8 deletions

View File

@@ -20866,8 +20866,8 @@
args = slice.call(arguments);
});
spread([4, 2], 'ignored');
assert.deepEqual(args, [4, 2]);
spread([1, 2], 3);
assert.deepEqual(args, [1, 2, 3]);
});
QUnit.test('should work with `start`', function(assert) {