Files
30-seconds-of-code/test/isEmpty.test.js
Christian C. Salvadó 83a6a6ea32 [ENHANCEMENT] Properly configure eslint to work with jest (#988)
* chore: make aware eslint that we use jest

By setting up the jest environment, we no longer need to declare the
'test' global in the configuration.

* chore: don't need to import expect, it's a jest environment global

* chore: don't need to import expect when creating undefined test
2019-06-18 08:34:45 +03:00

36 lines
1.0 KiB
JavaScript

const {isEmpty} = require('./_30s.js');
test('isEmpty is a Function', () => {
expect(isEmpty).toBeInstanceOf(Function);
});
test('Returns true for empty Map', () => {
expect(isEmpty(new Map())).toBeTruthy();
});
test('Returns true for empty Set', () => {
expect(isEmpty(new Set())).toBeTruthy();
});
test('Returns true for empty array', () => {
expect(isEmpty([])).toBeTruthy();
});
test('Returns true for empty object', () => {
expect(isEmpty({})).toBeTruthy();
});
test('Returns true for empty string', () => {
expect(isEmpty('')).toBeTruthy();
});
test('Returns false for non-empty array', () => {
expect(isEmpty([1, 2])).toBeFalsy();
});
test('Returns false for non-empty object', () => {
expect(isEmpty({ a: 1, b: 2 })).toBeFalsy();
});
test('Returns false for non-empty string', () => {
expect(isEmpty('text')).toBeFalsy();
});
test('Returns true - type is not considered a collection', () => {
expect(isEmpty(123)).toBeTruthy();
});
test('Returns true - type is not considered a collection', () => {
expect(isEmpty(true)).toBeTruthy();
});