@@ -33,8 +33,8 @@ describe('@0xintuition/predicates registry', () => {
3333 expect ( getPredicatesByCategory ( 'Identity/Classification' ) ) . toHaveLength ( 5 ) ;
3434 expect ( getPredicatesByCategory ( 'Social/Reputation' ) ) . toHaveLength ( 12 ) ;
3535 expect ( getPredicatesByCategory ( 'Curation/Containment' ) ) . toHaveLength ( 17 ) ;
36- expect ( getPredicatesByCategory ( 'Authorship/Contribution' ) ) . toHaveLength ( 14 ) ;
37- expect ( getPredicatesByCategory ( 'Metadata/Linking' ) ) . toHaveLength ( 15 ) ;
36+ expect ( getPredicatesByCategory ( 'Authorship/Contribution' ) ) . toHaveLength ( 15 ) ;
37+ expect ( getPredicatesByCategory ( 'Metadata/Linking' ) ) . toHaveLength ( 14 ) ;
3838 expect ( getPredicatesByCategory ( 'Affiliation/Membership' ) ) . toHaveLength ( 14 ) ;
3939 expect ( getPredicatesByCategory ( 'Domain-Specific' ) ) . toHaveLength ( 6 ) ;
4040 expect ( getPredicatesByCategory ( 'Sentiment/Opinion' ) ) . toHaveLength ( 8 ) ;
@@ -126,6 +126,12 @@ describe('@0xintuition/predicates registry', () => {
126126 const followedBy = getPredicateRecord ( 'followedBy' ) ;
127127 expect ( followedBy ?. isTransitive ) . toBe ( true ) ;
128128 expect ( followedBy ?. inversePredicate ) . toBe ( 'preceded by' ) ;
129+
130+ const founder = getPredicateRecord ( 'founder' ) ;
131+ expect ( founder ?. inversePredicate ) . toBe ( 'founded' ) ;
132+
133+ const founded = getPredicateRecord ( 'founded' ) ;
134+ expect ( founded ?. inversePredicate ) . toBe ( 'founder' ) ;
129135 } ) ;
130136
131137 it ( 'includes the first metadata predicate backfill tranche' , ( ) => {
@@ -228,9 +234,7 @@ describe('@0xintuition/predicates registry', () => {
228234 expect ( identityPredicates ) . toHaveLength ( 5 ) ;
229235
230236 for ( const predicate of identityPredicates ) {
231- if ( predicate . status === 'enshrined' ) {
232- expect ( predicate . examples ?. length ?? 0 ) . toBeGreaterThan ( 0 ) ;
233- }
237+ expect ( predicate . examples ?. length ?? 0 ) . toBeGreaterThan ( 0 ) ;
234238 }
235239 } ) ;
236240
0 commit comments