squiggle/__tests__/Jstat__test.re
2020-03-23 21:31:06 +00:00

11 lines
224 B
ReasonML

open Jest;
open Expect;
describe("Shape", () => {
describe("Continuous", () => {
test("", () => {
Js.log(Jstat.Jstat.normal);
expect(Jstat.Jstat.normal##pdf(3.0, 3.0, 3.0)) |> toEqual(1.0);
})
})
});