mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
1490ab12ef
Summary: Includes React Native and its dependencies Fresco, Metro, and Yoga. Excludes samples/examples/docs. find: ^(?:( *)|( *(?:[\*~#]|::))( )? *)?Copyright (?:\(c\) )?(\d{4})\b.+Facebook[\s\S]+?BSD[\s\S]+?(?:this source tree|the same directory)\.$ replace: $1$2$3Copyright (c) $4-present, Facebook, Inc.\n$2\n$1$2$3This source code is licensed under the MIT license found in the\n$1$2$3LICENSE file in the root directory of this source tree. Reviewed By: TheSavior, yungsters Differential Revision: D7007050 fbshipit-source-id: 37dd6bf0ffec0923bfc99c260bb330683f35553e
38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @emails oncall+react_native
|
|
*/
|
|
'use strict';
|
|
|
|
describe('groupByEveryN', () => {
|
|
var groupByEveryN = require('groupByEveryN');
|
|
|
|
it('should group by with different n', () => {
|
|
expect(groupByEveryN([1, 2, 3, 4, 5, 6, 7, 8, 9], 1))
|
|
.toEqual([[1], [2], [3], [4], [5], [6], [7], [8], [9]]);
|
|
expect(groupByEveryN([1, 2, 3, 4, 5, 6, 7, 8, 9], 2))
|
|
.toEqual([[1, 2], [3, 4], [5, 6], [7, 8], [9, null]]);
|
|
expect(groupByEveryN([1, 2, 3, 4, 5, 6, 7, 8, 9], 3))
|
|
.toEqual([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);
|
|
expect(groupByEveryN([1, 2, 3, 4, 5, 6, 7, 8, 9], 4))
|
|
.toEqual([[1, 2, 3, 4], [5, 6, 7, 8], [9, null, null, null]]);
|
|
});
|
|
|
|
it('should fill with null', () => {
|
|
expect(groupByEveryN([], 4))
|
|
.toEqual([]);
|
|
expect(groupByEveryN([1], 4))
|
|
.toEqual([[1, null, null, null]]);
|
|
expect(groupByEveryN([1, 2], 4))
|
|
.toEqual([[1, 2, null, null]]);
|
|
expect(groupByEveryN([1, 2, 3], 4))
|
|
.toEqual([[1, 2, 3, null]]);
|
|
expect(groupByEveryN([1, 2, 3, 4], 4))
|
|
.toEqual([[1, 2, 3, 4]]);
|
|
});
|
|
});
|