Files
30-seconds-of-code/test/factors.test.js
Angelos Chalaris 6667570dbb Additional tests
2018-10-26 21:26:34 +03:00

19 lines
636 B
JavaScript

const expect = require('expect');
const {factors} = require('./_30s.js');
test('factors is a Function', () => {
expect(factors).toBeInstanceOf(Function);
});
test('factors returns the correct array', () => {
expect(factors(12)).toEqual([2, 3, 4, 6, 12]);
});
test('factors returns the correct array of primes', () => {
expect(factors(12, true)).toEqual([2, 3]);
});
test('factors returns the correct array for negatives', () => {
expect(factors(-12)).toEqual([2, -2, 3, -3, 4, -4, 6, -6, 12, -12]);
});
test('factors returns the correct array of primes for negatives', () => {
expect(factors(-12, true)).toEqual([2, 3]);
});