squiggle/packages/squiggle-lang/__tests__/Bandwidth__Test.res
2022-02-01 14:05:26 -05:00

14 lines
306 B
Plaintext

open Jest
open Expect
describe("Bandwidth", () => {
test("nrd0()", () => {
let data = [1., 4., 3., 2.]
expect(Bandwidth.nrd0(data)) |> toEqual(0.7625801874014622)
})
test("nrd()", () => {
let data = [1., 4., 3., 2.]
expect(Bandwidth.nrd(data)) |> toEqual(0.8981499984950554)
})
})