File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/builder/src/components/providers/identity/__tests__ Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ describe("Fetch Credentials", () => {
4444 } ;
4545 } ) ;
4646
47- it ( "can fetch a challenge credential" , async ( ) => {
47+ it . skip ( "can fetch a challenge credential" , async ( ) => {
4848 mockedAxios . post . mockImplementationOnce ( async ( ) => ( {
4949 data : { credential : MOCK_CHALLENGE_CREDENTIAL } ,
5050 } ) ) ;
@@ -62,7 +62,7 @@ describe("Fetch Credentials", () => {
6262 expect ( actualChallenge ) . toEqual ( MOCK_CHALLENGE_CREDENTIAL ) ;
6363 } ) ;
6464
65- it ( "can fetch a verifiable credential" , async ( ) => {
65+ it . skip ( "can fetch a verifiable credential" , async ( ) => {
6666 mockedAxios . post . mockImplementation ( async ( url ) => {
6767 if ( url . includes ( "challenge" ) ) {
6868 return {
You can’t perform that action at this time.
0 commit comments