Testing
Table of Content
Overview
Writing Tests
typescript
import { chunk } from '../src/array';
describe('chunk', () => {
it('should split an array into smaller chunks', () => {
expect(chunk([1, 2, 3, 4, 5], 2)).toEqual([[1, 2], [3, 4], [5]]);
});
});Running Tests
Continuous Integration
Last updated