Files
30-seconds-of-code/test/equals.test.js
2018-11-01 15:23:37 +02:00

37 lines
1.4 KiB
JavaScript

const expect = require('expect');
const {equals} = require('./_30s.js');
test('equals is a Function', () => {
expect(equals).toBeInstanceOf(Function);
});
test("{ a: [2, {e: 3}], b: [4], c: 'foo' } is equal to { a: [2, {e: 3}], b: [4], c: 'foo' }", () => {
expect(
equals({ a: [2, { e: 3 }], b: [4], c: 'foo' }, { a: [2, { e: 3 }], b: [4], c: 'foo' })
).toBeTruthy();
});
test('[1,2,3] is equal to [1,2,3]', () => {
expect(equals([1, 2, 3], [1, 2, 3])).toBeTruthy();
});
test('{ a: [2, 3], b: [4] } is not equal to { a: [2, 3], b: [6] }', () => {
expect(equals({ a: [2, 3], b: [4] }, { a: [2, 3], b: [6] })).toBeFalsy();
});
test('[1,2,3] is not equal to [1,2,4]', () => {
expect(equals([1, 2, 3], [1, 2, 4])).toBeFalsy();
});
test('[1, 2, 3] should be equal to { 0: 1, 1: 2, 2: 3 }) - type is different, but their enumerable properties match.', () => {
expect(equals([1, 2, 3], { 0: 1, 1: 2, 2: 3 })).toBeTruthy();
});
const date = new Date();
test('Two of the same date are equal', () => {
expect(equals(date, new Date(0))).toBeFalsy();
});
test('null should not be equal to anything', () => {
expect(equals(null, { a: 'test' })).toBeFalsy();
});
test('undefined should not be equal to anything', () => {
expect(equals(undefined, { a: 'test' })).toBeFalsy();
});
test('{a: ""} should not be equal to {a: "", b: ""}', () => {
expect(equals({a: ''}, {a: '', b: ''})).toBeFalsy();
});