forked from primeroIMS/primero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavg.unit.test.js
29 lines (22 loc) · 926 Bytes
/
avg.unit.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (c) 2014 - 2023 UNICEF. All rights reserved.
import { expect } from "chai";
import avgOperator from "./avg";
describe("avgOperator", () => {
const operator = avgOperator(["a", "b", "c"]);
const decimalPlaceOperator = avgOperator(["a", "b", "c"], { decimalPlaces: 3 });
it("should return avg", () => {
expect(operator.evaluate({ a: 3, b: 4, c: 2 })).to.deep.equals(3);
});
it("should return avg when single argument passed", () => {
expect(operator.evaluate({ a: 3 })).to.deep.equals(3);
});
it("should return 0 when wrong arguments passed", () => {
expect(operator.evaluate({ d: 3, e: 4 })).to.deep.equals(0);
});
it("returns 0 when no argument passed", () => {
expect(operator.evaluate({})).to.deep.equals(0);
});
it("returns a float when decimal places are specified", () => {
expect(decimalPlaceOperator.evaluate({ a: 1, b: 4 })).to.deep.equals(2.5);
});
});