lux-framework
Version:
Build scalable, Node.js-powered REST APIs with almost no code.
22 lines (15 loc) • 476 B
JavaScript
// @flow
import { expect } from 'chai';
import { it, describe } from 'mocha';
import insert from '../insert';
describe('util insert()', () => {
it('inserts elements into an `Array` in place', () => {
const subject = new Array(3);
insert(subject, [1, 2, 3]);
expect(subject).to.deep.equal([1, 2, 3]);
});
it('returns the destination `Array`', () => {
const subject = new Array(3);
expect(insert(subject, [1, 2, 3])).to.equal(subject);
});
});