Changing instances of the word falsey to falsy for consistency sake, and especially as there is the array FilterFalsy function that is spelled without an e.
This commit is contained in:
@ -3,7 +3,7 @@ const {all} = require('./_30s.js');
|
||||
test('all is a Function', () => {
|
||||
expect(all).toBeInstanceOf(Function);
|
||||
});
|
||||
test('Returns true for arrays with no falsey values', () => {
|
||||
test('Returns true for arrays with no falsy values', () => {
|
||||
expect(all([4, 1, 2, 3])).toBeTruthy();
|
||||
});
|
||||
test('Returns false for arrays with 0', () => {
|
||||
|
||||
Reference in New Issue
Block a user