Test cleanup and fixes [s-t]

This commit is contained in:
Angelos Chalaris
2018-06-18 18:37:35 +03:00
parent 9c22d92c34
commit 46ad6c08b9
53 changed files with 286 additions and 409 deletions

View File

@ -1,15 +1,12 @@
const expect = require('expect');
const take = require('./take.js');
test('take is a Function', () => {
test('take is a Function', () => {
expect(take).toBeInstanceOf(Function);
});
test('Returns an array with n elements removed from the beginning.', () => {
test('Returns an array with n elements removed from the beginning.', () => {
expect(take([1, 2, 3], 5), [1, 2).toEqual(3])
});
test('Returns an array with n elements removed from the beginning.', () => {
test('Returns an array with n elements removed from the beginning.', () => {
expect(take([1, 2, 3], 0)).toEqual([])
});