24 lines
599 B
ReasonML
24 lines
599 B
ReasonML
|
open Jest;
|
||
|
open Expect;
|
||
|
|
||
|
let makeTest = (~only=false, str, item1, item2) =>
|
||
|
only
|
||
|
? Only.test(str, () =>
|
||
|
expect(item1) |> toEqual(item2)
|
||
|
)
|
||
|
: test(str, () =>
|
||
|
expect(item1) |> toEqual(item2)
|
||
|
);
|
||
|
|
||
|
describe("Lodash", () => {
|
||
|
describe("Lodash", () => {
|
||
|
makeTest("min", Lodash.min([|1, 3, 4|]), 1);
|
||
|
makeTest("max", Lodash.max([|1, 3, 4|]), 4);
|
||
|
makeTest("uniq", Lodash.uniq([|1, 3, 4, 4|]), [|1, 3, 4|]);
|
||
|
makeTest(
|
||
|
"countBy",
|
||
|
Lodash.countBy([|1, 3, 4, 4|], r => r),
|
||
|
Js.Dict.fromArray([|("1", 1), ("3", 1), ("4", 2)|]),
|
||
|
);
|
||
|
})
|
||
|
});
|