@@ -89,7 +89,7 @@ describe('handling attestations that do not exist', () => {
89
89
)
90
90
await expect ( submitTx ( authorized , tokenHolder ) ) . rejects . toMatchObject ( {
91
91
section : 'attestation' ,
92
- name : 'AttestationNotFound' ,
92
+ name : expect . stringMatching ( / ^ ( A t t e s t a t i o n ) ? N o t F o u n d $ / ) ,
93
93
} )
94
94
} , 30_000 )
95
95
@@ -103,7 +103,7 @@ describe('handling attestations that do not exist', () => {
103
103
)
104
104
await expect ( submitTx ( authorized , tokenHolder ) ) . rejects . toMatchObject ( {
105
105
section : 'attestation' ,
106
- name : 'AttestationNotFound' ,
106
+ name : expect . stringMatching ( / ^ ( A t t e s t a t i o n ) ? N o t F o u n d $ / ) ,
107
107
} )
108
108
} , 30_000 )
109
109
} )
@@ -283,7 +283,10 @@ describe('When there is an attester, claimer and ctype drivers license', () => {
283
283
284
284
await expect (
285
285
submitTx ( authorizedStoreTx , tokenHolder )
286
- ) . rejects . toMatchObject ( { section : 'ctype' , name : 'CTypeNotFound' } )
286
+ ) . rejects . toMatchObject ( {
287
+ section : 'ctype' ,
288
+ name : expect . stringMatching ( / ^ ( C T y p e ) ? N o t F o u n d $ / ) ,
289
+ } )
287
290
} , 60_000 )
288
291
289
292
describe ( 'when there is a credential on-chain' , ( ) => {
@@ -375,7 +378,10 @@ describe('When there is an attester, claimer and ctype drivers license', () => {
375
378
376
379
await expect (
377
380
submitTx ( authorizedRevokeTx , tokenHolder )
378
- ) . rejects . toMatchObject ( { section : 'attestation' , name : 'Unauthorized' } )
381
+ ) . rejects . toMatchObject ( {
382
+ section : 'attestation' ,
383
+ name : expect . stringMatching ( / ^ ( U n a u t h o r i z e d | N o t A u t h o r i z e d ) $ / ) ,
384
+ } )
379
385
const storedAttestation = Attestation . fromChain (
380
386
await api . query . attestation . attestations ( attestation . claimHash ) ,
381
387
attestation . claimHash
0 commit comments