We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8ec067 commit 23c9094Copy full SHA for 23c9094
test/hanzi2num.test.js
@@ -128,7 +128,7 @@ describe("hanzi2num", () => {
128
});
129
130
131
- //渺、埃、尘、沙、纤、微
+ //渺、埃、尘 (塵)、沙、纤、微
132
describe('hanzi2num("一微")', () => {
133
it("should translate hanzi to number correctly", () => {
134
assert.strictEqual(hanzi2num("一微"), 1e-6);
@@ -147,6 +147,12 @@ describe("hanzi2num", () => {
147
148
149
150
+ describe('hanzi2num("一塵")', () => {
151
+ it("should translate hanzi to number correctly", () => {
152
+ assert.strictEqual(hanzi2num("一塵"), 1e-9);
153
+ });
154
155
+
156
describe('hanzi2num("一尘")', () => {
157
158
assert.strictEqual(hanzi2num("一尘"), 1e-9);
0 commit comments