@@ -4,6 +4,39 @@ describe('CheckValidOrgNr', () => {
44 it ( 'should return true when the orgNr is valid' , ( ) => {
55 expect ( checkValidOrgnNr ( '043871668' ) ) . toBe ( true ) ;
66 } ) ;
7+ it ( 'should return true when the orgNr is valid' , ( ) => {
8+ expect ( checkValidOrgnNr ( '974683520' ) ) . toBe ( true ) ;
9+ } ) ;
10+ it ( 'should return true when the orgNr is valid' , ( ) => {
11+ expect ( checkValidOrgnNr ( '900010605' ) ) . toBe ( true ) ;
12+ } ) ;
13+ it ( 'should return true when the orgNr is valid' , ( ) => {
14+ expect ( checkValidOrgnNr ( '123778847' ) ) . toBe ( true ) ;
15+ } ) ;
16+ it ( 'should return true when the orgNr is valid' , ( ) => {
17+ expect ( checkValidOrgnNr ( '344547211' ) ) . toBe ( true ) ;
18+ } ) ;
19+ it ( 'should return true when the orgNr is valid' , ( ) => {
20+ expect ( checkValidOrgnNr ( '542683430' ) ) . toBe ( true ) ;
21+ } ) ;
22+ it ( 'should return true when the orgNr is valid' , ( ) => {
23+ expect ( checkValidOrgnNr ( '473324261' ) ) . toBe ( true ) ;
24+ } ) ;
25+ it ( 'should return true when the orgNr is valid' , ( ) => {
26+ expect ( checkValidOrgnNr ( '883863631' ) ) . toBe ( true ) ;
27+ } ) ;
28+ it ( 'should return true when the orgNr is valid' , ( ) => {
29+ expect ( checkValidOrgnNr ( '594027922' ) ) . toBe ( true ) ;
30+ } ) ;
31+ it ( 'should return true when the orgNr is valid' , ( ) => {
32+ expect ( checkValidOrgnNr ( '688701473' ) ) . toBe ( true ) ;
33+ } ) ;
34+ it ( 'should return true when the orgNr is valid' , ( ) => {
35+ expect ( checkValidOrgnNr ( '696902453' ) ) . toBe ( true ) ;
36+ } ) ;
37+ it ( 'should return true when the orgNr is valid' , ( ) => {
38+ expect ( checkValidOrgnNr ( '899350766' ) ) . toBe ( true ) ;
39+ } ) ;
740 it ( 'should return false when the orgNr is invalid' , ( ) => {
841 expect ( checkValidOrgnNr ( '143871668' ) ) . toBe ( false ) ;
942 } ) ;
0 commit comments