From 82bba54d5100df4a8ce1bdcff2e3aaea407848a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Feje=C5=A1?= Date: Wed, 10 Jan 2018 13:01:52 +0100 Subject: [PATCH] add 2 tests for spreadOver and standardDeviation --- test/spreadOver/spreadOver.test.js | 2 ++ test/standardDeviation/standardDeviation.test.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/test/spreadOver/spreadOver.test.js b/test/spreadOver/spreadOver.test.js index c1858bd83..ebb019d9b 100644 --- a/test/spreadOver/spreadOver.test.js +++ b/test/spreadOver/spreadOver.test.js @@ -5,6 +5,8 @@ test('Testing spreadOver', (t) => { //For more information on all the methods supported by tape //Please go to https://github.com/substack/tape t.true(typeof spreadOver === 'function', 'spreadOver is a Function'); + const arrayMax = spreadOver(Math.max); + t.equal(arrayMax([1, 2, 3]), 3, "Takes a variadic function and returns a closure that accepts an array of arguments to map to the inputs of the function."); //t.deepEqual(spreadOver(args..), 'Expected'); //t.equal(spreadOver(args..), 'Expected'); //t.false(spreadOver(args..), 'Expected'); diff --git a/test/standardDeviation/standardDeviation.test.js b/test/standardDeviation/standardDeviation.test.js index 7a18822e1..fd0ffef6f 100644 --- a/test/standardDeviation/standardDeviation.test.js +++ b/test/standardDeviation/standardDeviation.test.js @@ -5,6 +5,8 @@ test('Testing standardDeviation', (t) => { //For more information on all the methods supported by tape //Please go to https://github.com/substack/tape t.true(typeof standardDeviation === 'function', 'standardDeviation is a 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"); //t.deepEqual(standardDeviation(args..), 'Expected'); //t.equal(standardDeviation(args..), 'Expected'); //t.false(standardDeviation(args..), 'Expected');