Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit ebf82fe

Browse files
committed
lint
1 parent 53636fc commit ebf82fe

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tests/equals.test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,8 @@ describe("examples from the General Decimal Arithmetic specification", () => {
343343

344344
describe("examples from a presentation at TC39 plenary", () => {
345345
test("NaN with a payload", () => {
346-
expect(new Decimal128("NaN").equals(new Decimal128("NaN123"))).toStrictEqual(true);
346+
expect(
347+
new Decimal128("NaN").equals(new Decimal128("NaN123"))
348+
).toStrictEqual(true);
347349
});
348350
});

tests/round.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ describe("floor", function () {
460460
});
461461
});
462462

463-
describe ("examples for TC39 plenary slides", () => {
463+
describe("examples for TC39 plenary slides", () => {
464464
let a = new Decimal128("1.456");
465465
test("round to 2 decimal places, rounding mode is ceiling", () => {
466466
expect(a.round(2, "ceil").toString()).toStrictEqual("1.46");

0 commit comments

Comments
 (0)