@gleefullychill/lotide
Version:
A library based off of lodash for a student project
9 lines (8 loc) • 393 B
JavaScript
const takeUntil = require('../takeUntil');
const assert = require('chai').assert;
describe('#takeUntil', () => {
it('returns an array equal to the single level array given up to the conditions of a given function', () => {
const greaterThanSeven = (item) => (item > 7 ? true : false);
assert.deepEqual(takeUntil([4, 5, 1, 5, 7, 8, 9,], greaterThanSeven), [4, 5, 1, 5, 7]);
});
});