Added test for ruduce with workaround of bug: https://typescript.codeplex.com/workitem/1960

This commit is contained in:
Igor Oleinikov
2013-12-06 12:49:34 +04:00
parent 82ba5bbfad
commit e46dd25be8
+1
View File
@@ -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<number>((acc, i) => acc + i, 100);
ax.reduce((acc, i) => acc + i);
ax.all(item => true);