Test migration to jest by hand
Apparently using regular expressions is way easier.
This commit is contained in:
8
test/standardDeviation/standardDeviation.js
Normal file
8
test/standardDeviation/standardDeviation.js
Normal file
@ -0,0 +1,8 @@
|
||||
const standardDeviation = (arr, usePopulation = false) => {
|
||||
const mean = arr.reduce((acc, val) => acc + val, 0) / arr.length;
|
||||
return Math.sqrt(
|
||||
arr.reduce((acc, val) => acc.concat((val - mean) ** 2), []).reduce((acc, val) => acc + val, 0) /
|
||||
(arr.length - (usePopulation ? 0 : 1))
|
||||
);
|
||||
};
|
||||
module.exports = standardDeviation;
|
||||
10
test/standardDeviation/standardDeviation.test.js
Normal file
10
test/standardDeviation/standardDeviation.test.js
Normal file
@ -0,0 +1,10 @@
|
||||
const expect = require('expect');
|
||||
const standardDeviation = require('./standardDeviation.js');
|
||||
|
||||
|
||||
test('standardDeviation is a Function', () => {
|
||||
expect(standardDeviation).toBeInstanceOf(Function);
|
||||
});
|
||||
t.equal(standardDeviation([10, 2, 38, 23, 38, 23, 21]), 13.284434142114991, "Returns the standard deviation of an array of numbers");
|
||||
t.equal(standardDeviation([10, 2, 38, 23, 38, 23, 21], true), 12.29899614287479, "Returns the standard deviation of an array of numbers");
|
||||
|
||||
Reference in New Issue
Block a user