@@ -1005,7 +1005,7 @@ describe("authenticated", () => {
10051005 const response = await appClient . index . $post ( { header : { "test-credential-id" : "base-default" } } ) ;
10061006
10071007 expect ( response . status ) . toBe ( 200 ) ;
1008- expect ( createCard ) . toHaveBeenCalledWith ( "base-default-panda" , BASE_PRODUCT_ID , undefined ) ;
1008+ expect ( createCard ) . toHaveBeenCalledWith ( "base-default-panda" , BASE_PRODUCT_ID , undefined , undefined ) ;
10091009 await expect ( response . json ( ) ) . resolves . toStrictEqual ( {
10101010 status : "ACTIVE" ,
10111011 lastFour : "4081" ,
@@ -1033,7 +1033,12 @@ describe("authenticated", () => {
10331033 const response = await appClient . index . $post ( { header : { "test-credential-id" : "base-signature" } } ) ;
10341034
10351035 expect ( response . status ) . toBe ( 200 ) ;
1036- expect ( createCard ) . toHaveBeenCalledWith ( "base-signature-panda" , SIGNATURE_PRODUCT_ID , undefined ) ;
1036+ expect ( createCard ) . toHaveBeenCalledWith (
1037+ "base-signature-panda" ,
1038+ SIGNATURE_PRODUCT_ID ,
1039+ undefined ,
1040+ "c4c03256d6764a8390f41b60561d27af" ,
1041+ ) ;
10371042 await expect ( response . json ( ) ) . resolves . toStrictEqual ( {
10381043 status : "ACTIVE" ,
10391044 lastFour : "4242" ,
@@ -1061,7 +1066,7 @@ describe("authenticated", () => {
10611066 const response = await appClient . index . $post ( { header : { "test-credential-id" : "optimism-credential" } } ) ;
10621067
10631068 expect ( response . status ) . toBe ( 200 ) ;
1064- expect ( createCard ) . toHaveBeenCalledWith ( "optimism-panda" , SIGNATURE_PRODUCT_ID , undefined ) ;
1069+ expect ( createCard ) . toHaveBeenCalledWith ( "optimism-panda" , SIGNATURE_PRODUCT_ID , undefined , undefined ) ;
10651070 await expect ( response . json ( ) ) . resolves . toStrictEqual ( {
10661071 status : "ACTIVE" ,
10671072 lastFour : "1010" ,
0 commit comments