File tree Expand file tree Collapse file tree 1 file changed +0
-28
lines changed
Expand file tree Collapse file tree 1 file changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -29,20 +29,6 @@ describe("Dict type", () => {
2929 ghi : [ "jkl" , "mno" ]
3030 } ;
3131 } ) ;
32- // it("(compile) should have a default typeParam", () => {
33- // const x: Dict = {
34- // abc: ["def"],
35- // ghi: ["jkl", "mno"]
36- // };
37- // });
38- // it("(compile) should have a default typeParam of `any`", () => {
39- // const x: Dict = {
40- // abc: "def",
41- // ghi: ["jkl", "mno"],
42- // pqr: 4,
43- // stu: () => false
44- // };
45- // });
4632} ) ;
4733
4834describe ( "mapDict" , ( ) => {
@@ -85,18 +71,4 @@ describe("reduceDict", () => {
8571 )
8672 ) . to . eq ( 26 ) ;
8773 } ) ;
88- // it("should not invoke the reducer function for undefined values", () => {
89- // let invokeCount = 0;
90- // expect(
91- // indexExports.reduceDict(
92- // { abc: 4, def: undefined },
93- // (x, acc) => {
94- // invokeCount++;
95- // return `${acc}, ${x}`;
96- // },
97- // ""
98- // )
99- // ).to.eq(", 4");
100- // expect(invokeCount).to.eq(1);
101- // });
10274} ) ;
You can’t perform that action at this time.
0 commit comments