@@ -500,6 +500,7 @@ test('behavior: default (webauthn)', async () => {
500500 nonce,
501501 maxFeePerGas,
502502 maxPriorityFeePerGas,
503+ transactionIndex,
503504 signature,
504505 ...rest
505506 } = response
@@ -513,6 +514,7 @@ test('behavior: default (webauthn)', async () => {
513514 expect ( maxFeePerGas ) . toBeDefined ( )
514515 expect ( maxPriorityFeePerGas ) . toBeDefined ( )
515516 expect ( signature ) . toBeDefined ( )
517+ expect ( transactionIndex ) . toBeDefined ( )
516518 expect ( rest ) . toMatchInlineSnapshot ( `
517519 {
518520 "aaAuthorizationList": [],
@@ -529,7 +531,6 @@ test('behavior: default (webauthn)', async () => {
529531 "gas": 100000n,
530532 "gasPrice": 20000000000n,
531533 "nonceKey": 0n,
532- "transactionIndex": 1,
533534 "type": "aa",
534535 "validAfter": null,
535536 "validBefore": null,
@@ -548,6 +549,7 @@ test('behavior: default (webauthn)', async () => {
548549 logs,
549550 logsBloom,
550551 transactionHash,
552+ transactionIndex,
551553 ...rest
552554 } = receipt
553555
@@ -559,6 +561,7 @@ test('behavior: default (webauthn)', async () => {
559561 expect ( logs ) . toBeDefined ( )
560562 expect ( logsBloom ) . toBeDefined ( )
561563 expect ( transactionHash ) . toBe ( receipt . transactionHash )
564+ expect ( transactionIndex ) . toBeDefined ( )
562565 expect ( rest ) . toMatchInlineSnapshot ( `
563566 {
564567 "blobGasPrice": undefined,
@@ -568,7 +571,6 @@ test('behavior: default (webauthn)', async () => {
568571 "gasUsed": 31208n,
569572 "status": "success",
570573 "to": "0x0000000000000000000000000000000000000000",
571- "transactionIndex": 1,
572574 "type": "0x76",
573575 }
574576 ` )
0 commit comments