mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
Remove async
This commit is contained in:
parent
94a4b4d7db
commit
5f53e4b67e
@ -784,11 +784,11 @@ describe('Actions', () => {
|
||||
signTypedMsgSpy.restore()
|
||||
})
|
||||
|
||||
it('calls signTypedMsg in background with no error', async () => {
|
||||
it('calls signTypedMsg in background with no error', () => {
|
||||
const store = mockStore()
|
||||
signTypedMsgSpy = sinon.stub(background, 'signTypedMessage')
|
||||
|
||||
store.dispatch(await actions.signTypedMsg(msgParamsV3))
|
||||
store.dispatch(actions.signTypedMsg(msgParamsV3))
|
||||
assert(signTypedMsgSpy.calledOnce)
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user