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", () => {
29
29
ghi : [ "jkl" , "mno" ]
30
30
} ;
31
31
} ) ;
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
- // });
46
32
} ) ;
47
33
48
34
describe ( "mapDict" , ( ) => {
@@ -85,18 +71,4 @@ describe("reduceDict", () => {
85
71
)
86
72
) . to . eq ( 26 ) ;
87
73
} ) ;
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
- // });
102
74
} ) ;
You can’t perform that action at this time.
0 commit comments