From fe5faad7944e014dce1ebaffb0d5bcaf068758ac Mon Sep 17 00:00:00 2001 From: jos Date: Fri, 16 Jan 2015 09:23:03 +0100 Subject: [PATCH] Upgraded to typed-function v0.6.0 --- package.json | 2 +- test/function/statistics/sum.test.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index de2f41c98..b112b4c62 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ ], "dependencies": { "decimal.js": "^4.0.1", - "typed-function": "^0.5.0" + "typed-function": "^0.6.0" }, "devDependencies": { "webpack": "latest", diff --git a/test/function/statistics/sum.test.js b/test/function/statistics/sum.test.js index 99aa130eb..8eb821581 100644 --- a/test/function/statistics/sum.test.js +++ b/test/function/statistics/sum.test.js @@ -64,9 +64,9 @@ describe('sum', function() { }); - it.skip('should throw an error if called with invalid number of arguments', function() { + it('should throw an error if called with invalid number of arguments', function() { assert.throws(function() {sum()}); - assert.throws(function() {sum([], 2, 3)}); // TODO: must be fixed in typed-function + assert.throws(function() {sum([], 2, 3)}); }); it('should throw an error if called with not yet supported argument dim', function() {