Test cleanup and fixes [s-t]

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

View File

@ -1,12 +1,9 @@
const expect = require('expect');
const takeRightWhile = require('./takeRightWhile.js');
test('takeRightWhile is a Function', () => {
test('takeRightWhile is a Function', () => {
expect(takeRightWhile).toBeInstanceOf(Function);
});
test('Removes elements until the function returns true', () => {
expect(takeRightWhile([1, 2, 3, 4], n => n < 3), [3, 4]).toEqual()
test('Removes elements until the function returns true', () => {
expect(takeRightWhile([1, 2, 3, 4], n => n < 3)).toEqual([3, 4]);
});