Add haveSameContents snippet

This commit is contained in:
Angelos Chalaris
2020-01-05 21:40:39 +02:00
parent 27ecf5fd86
commit 9a3e74cefa
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,17 @@
const {haveSameContents} = require('./_30s.js');
test('haveSameContents is a Function', () => {
expect(haveSameContents).toBeInstanceOf(Function);
});
test('returns true for arrays with same contents', () => {
expect(haveSameContents([1, 2, 3], [2, 3, 1])).toBeTruthy();
});
test('returns false for arrays with different contents', () => {
expect(haveSameContents([1, 2], [2, 3, 1])).toBeFalsy();
});
test('returns false for arrays with different contents', () => {
expect(haveSameContents([1, 2, 3], [2, 1])).toBeFalsy();
});
test('returns false for arrays with different contents', () => {
expect(haveSameContents([1, 2, 3], [2, 1, 6])).toBeFalsy();
});