@@ -71,7 +71,8 @@ describe('AccountService', () => {
7171 type : KEYRING_ACCOUNT_TYPE ,
7272 address : expect . any ( String ) ,
7373 scopes : [ KnownCaip2ChainId . Mainnet ] ,
74- methods : [ 'signMessage' , 'signTransaction' , 'signAuthEntry' ] ,
74+ methods : [ 'signMessage' , 'signTransaction' ] ,
75+ // methods: ['signMessage', 'signTransaction', 'signAuthEntry'], // TODO: Add this once keyring-api supports it
7576 options : {
7677 entropy : {
7778 type : 'mnemonic' ,
@@ -106,7 +107,7 @@ describe('AccountService', () => {
106107 methods : [
107108 MultichainMethod . SignMessage ,
108109 MultichainMethod . SignTransaction ,
109- MultichainMethod . SignAuthEntry ,
110+ // MultichainMethod.SignAuthEntry, // TODO: Add this once keyring-api supports it
110111 ] ,
111112 options : {
112113 entropy : {
@@ -149,7 +150,7 @@ describe('AccountService', () => {
149150 methods : [
150151 MultichainMethod . SignMessage ,
151152 MultichainMethod . SignTransaction ,
152- MultichainMethod . SignAuthEntry ,
153+ // MultichainMethod.SignAuthEntry, // TODO: Add this once keyring-api supports it
153154 ] ,
154155 options : {
155156 entropy : {
@@ -382,6 +383,11 @@ describe('AccountService', () => {
382383 expect ( account ) . toStrictEqual ( {
383384 ...mockAccount ,
384385 id : expect . any ( String ) ,
386+ // TODO: Remove when keyring-api supports all methods
387+ methods : [
388+ MultichainMethod . SignMessage ,
389+ MultichainMethod . SignTransaction ,
390+ ] ,
385391 } ) ;
386392 } ) ;
387393 } ) ;
0 commit comments