7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
|
import Decimal from "util/bignum";
|
||
|
|
||
|
test("Decimals?", () => {
|
||
|
const x = new Decimal(3);
|
||
|
expect(x.m).toBe(3);
|
||
|
});
|