From e46dd25be816c17c1feea1d8ddad40aaf4fb8eb7 Mon Sep 17 00:00:00 2001 From: Igor Oleinikov Date: Fri, 6 Dec 2013 12:49:34 +0400 Subject: [PATCH] Added test for ruduce with workaround of bug: https://typescript.codeplex.com/workitem/1960 --- ix.js/l2o-tests.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ix.js/l2o-tests.ts b/ix.js/l2o-tests.ts index 1440faf85a..41cc7bdc49 100644 --- a/ix.js/l2o-tests.ts +++ b/ix.js/l2o-tests.ts @@ -42,6 +42,7 @@ ax.aggregate("", (acc, i) => acc + i); ax.aggregate((acc, i) => acc + i); //ax.reduce((acc, i) => acc + i, 100); // bug: https://typescript.codeplex.com/workitem/1960 +ax.reduce((acc, i) => acc + i, 100); ax.reduce((acc, i) => acc + i); ax.all(item => true);