Skip to content

Commit 71d506d

Browse files
🔍 test(ZZ.from): Add one more test 0x3b.
1 parent 35894ef commit 71d506d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/src/ZZ/from.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ test( 'ZZ.from()' , t => {
88
t.is( ZZ.from(undefined).toString() , '0' ) ;
99

1010
t.is( ZZ.from('zz', 36).toString(36) , 'zz' ) ;
11+
t.is( ZZ.from('3b', 16).toString(16) , '3b' ) ;
1112
//t.is( ZZ.from('0x3b').toString(16) , '3b' ) ;
1213
t.is( ZZ.from(ZZ.from(5).digits(3), 3).toString() , '5' ) ;
1314
t.is( ZZ.from(Math.pow(7, 7)).toString() , '823543' ) ;

0 commit comments

Comments
 (0)