UNPKG

testbook

Version:
13 lines 370 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const promise_1 = require("./promise"); describe("chunk", () => { test("chunk", () => { expect(promise_1.chunk([1, 2, 3, 4, 5, 6, 7, 8], 3)).toEqual([ [1, 2, 3], [4, 5, 6], [7, 8], ]); }); }); //# sourceMappingURL=promise.test.js.map