@@ -38,34 +38,34 @@ describe('client', () => {
3838 } )
3939
4040 describe ( '#account' , ( ) => {
41- it ( 'should return an account when it exists.' , async ( context ) => {
41+ it . skip ( 'should return an account when it exists.' , async ( context ) => {
4242 const account = await context . client . account ( )
4343 expect ( account ) . toStrictEqual ( context . parsedAliceAccountSecret )
4444 } )
4545 } )
4646
4747 describe ( '#agent' , ( ) => {
48- it ( 'should return an agent when it exists.' , async ( context ) => {
48+ it . skip ( 'should return an agent when it exists.' , async ( context ) => {
4949 const agent = await context . client . agent ( )
5050 expect ( agent ) . toStrictEqual ( context . parsedAliceAccountSecret )
5151 } )
5252 } )
5353
5454 describe ( '#delegation' , ( ) => {
55- it ( 'should return the default delegation.' , async ( context ) => {
55+ it . skip ( 'should return the default delegation.' , async ( context ) => {
5656 const delegation = await context . client . currentDelegation ( )
5757 expect ( delegation ) . toBeTruthy ( )
5858 expect ( delegation ) . toHaveProperty ( 'root' )
5959 } )
6060
61- it ( 'should have account did as with.' , async ( context ) => {
61+ it . skip ( 'should have account did as with.' , async ( context ) => {
6262 const delegation = await context . client . currentDelegation ( )
6363 expect ( delegation . capabilities [ 0 ] . with ) . toStrictEqual (
6464 ( await context . client . account ( ) ) . did ( )
6565 )
6666 } )
6767
68- it ( 'should have agent did as audience.' , async ( context ) => {
68+ it . skip ( 'should have agent did as audience.' , async ( context ) => {
6969 const delegation = await context . client . currentDelegation ( )
7070 expect ( delegation . audience . did ( ) ) . toStrictEqual (
7171 ( await context . client . agent ( ) ) . did ( )
@@ -74,19 +74,19 @@ describe('client', () => {
7474 } )
7575
7676 describe ( '#identity' , ( ) => {
77- it ( 'should return an account when it exists.' , async ( context ) => {
77+ it . skip ( 'should return an account when it exists.' , async ( context ) => {
7878 const { account } = await context . client . identity ( )
7979 expect ( account . did ( ) ) . toStrictEqual (
8080 context . parsedAliceAccountSecret . did ( )
8181 )
8282 } )
8383
84- it ( 'should return an agent when it exists.' , async ( context ) => {
84+ it . skip ( 'should return an agent when it exists.' , async ( context ) => {
8585 const { agent } = await context . client . identity ( )
8686 expect ( agent ) . toStrictEqual ( context . parsedAliceAccountSecret )
8787 } )
8888
89- it ( 'should build the account from old secret if one exists.' , async ( context ) => {
89+ it . skip ( 'should build the account from old secret if one exists.' , async ( context ) => {
9090 const settings = new Map ( )
9191 settings . set (
9292 'secret' ,
0 commit comments