Skip to content

Commit 0c71405

Browse files
committed
Remove test for base unit One
1 parent b1d6f42 commit 0c71405

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/units.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import { Units } from "../src";
77
// export const fail: Quantity.Mass = Units.CentiMeter;
88

99
describe("units_test_equals", () => {
10-
test("Base unit One should be equal", () => {
11-
const unit = Unit.One;
12-
const unit2 = Serialize.stringToUnit("One", Units)!;
13-
expect(Unit.equals(unit, unit2)).toBeTruthy();
14-
});
10+
// test("Base unit One should be equal", () => {
11+
// const unit = Unit.One;
12+
// const unit2 = Serialize.stringToUnit("One", Units)!;
13+
// expect(Unit.equals(unit, unit2)).toBeTruthy();
14+
// });
1515
test("Base unit One should be equal. Order should not matter", () => {
1616
const unit = Serialize.unitToString(Unit.One);
1717
const unit2 = Serialize.unitToString(Unit.One);

0 commit comments

Comments
 (0)