@@ -17,6 +17,7 @@ describe("SEP-6", () => {
1717 "https://friendbot.stellar.org/?addr=" + accountKp . publicKey ,
1818 ) ;
1919 } , 10000 ) ;
20+
2021 it ( "should get anchor info" , async ( ) => {
2122 const resp = await sep6 . info ( ) ;
2223 expect ( resp . deposit ) . toBeTruthy ( ) ;
@@ -26,7 +27,9 @@ describe("SEP-6", () => {
2627 expect ( refreshed . deposit ) . toBeTruthy ( ) ;
2728 expect ( refreshed . withdraw ) . toBeTruthy ( ) ;
2829 } ) ;
29- it ( "should deposit" , async ( ) => {
30+
31+ // skipped: the testanchor changed its SEP-6 API behavior
32+ it . skip ( "should deposit" , async ( ) => {
3033 const auth = await anchor . sep10 ( ) ;
3134 const authToken = await auth . authenticate ( { accountKp } ) ;
3235
@@ -65,6 +68,7 @@ describe("SEP-6", () => {
6568 } ) ;
6669 expect ( resp . id ) . toBeTruthy ( ) ;
6770 } ) ;
71+
6872 it ( "should withdraw" , async ( ) => {
6973 const auth = await anchor . sep10 ( ) ;
7074 const authToken = await auth . authenticate ( { accountKp } ) ;
@@ -94,7 +98,8 @@ describe("SEP-6", () => {
9498 expect ( resp . id ) . toBeTruthy ( ) ;
9599 } ) ;
96100
97- it ( "deposit-exchange should work" , async ( ) => {
101+ // skipped: the testanchor changed its SEP-6 API behavior
102+ it . skip ( "deposit-exchange should work" , async ( ) => {
98103 const auth = await anchor . sep10 ( ) ;
99104 const authToken = await auth . authenticate ( { accountKp } ) ;
100105
@@ -122,7 +127,8 @@ describe("SEP-6", () => {
122127 expect ( resp . id ) . toBeTruthy ( ) ;
123128 } ) ;
124129
125- it ( "withdraw-exchange should work" , async ( ) => {
130+ // skipped: the testanchor changed its SEP-6 API behavior
131+ it . skip ( "withdraw-exchange should work" , async ( ) => {
126132 const auth = await anchor . sep10 ( ) ;
127133 const authToken = await auth . authenticate ( { accountKp } ) ;
128134
0 commit comments