thelounge/test/client/js/helpers/roundBadgeNumberTest.ts

23 lines
770 B
TypeScript
Raw Normal View History

import {expect} from "chai";
import roundBadgeNumber from "../../../../client/js/helpers/roundBadgeNumber";
2017-11-29 06:31:03 +01:00
describe("roundBadgeNumber helper", function () {
it("should return any number under 1000 as a string", function () {
2017-11-29 06:31:03 +01:00
expect(roundBadgeNumber(123)).to.equal("123");
});
it("should return numbers above 999 in thousands", function () {
2017-11-29 06:31:03 +01:00
expect(roundBadgeNumber(1000)).to.be.equal("1.0k");
});
it("should round and not floor", function () {
2017-11-29 06:31:03 +01:00
expect(roundBadgeNumber(9999)).to.be.equal("10.0k");
});
it("should always include a single digit when rounding up", function () {
2017-11-29 06:31:03 +01:00
expect(roundBadgeNumber(1234)).to.be.equal("1.2k");
expect(roundBadgeNumber(12345)).to.be.equal("12.3k");
expect(roundBadgeNumber(123456)).to.be.equal("123.4k");
});
});