mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Remove approvePersonalMessage test
This commit is contained in:
parent
8250fd9d6d
commit
f2e1cb9302
@ -460,51 +460,6 @@ describe('MetaMaskController', function () {
|
||||
})
|
||||
})
|
||||
|
||||
describe('#approvePersonalMessage', function () {
|
||||
|
||||
it('errors with no from in msgParams', function () {
|
||||
const msgParams = {
|
||||
'data': data,
|
||||
}
|
||||
metamaskController.approvePersonalMessage(msgParams, function (error) {
|
||||
assert.equal(error.message, 'MetaMask Message Signature: from field is required.')
|
||||
})
|
||||
})
|
||||
|
||||
let msgParams, metamaskMsgs, msgId
|
||||
|
||||
const address = '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc'
|
||||
const data = '0x43727970746f6b697474696573'
|
||||
|
||||
beforeEach(function () {
|
||||
|
||||
msgParams = {
|
||||
'from': address,
|
||||
'data': data,
|
||||
}
|
||||
|
||||
metamaskController.approvePersonalMessage(msgParams, noop)
|
||||
metamaskMsgs = metamaskController.personalMessageManager.getUnapprovedMsgs()
|
||||
msgId = Object.keys(metamaskMsgs)[0]
|
||||
})
|
||||
|
||||
it('persists address from msg params', function () {
|
||||
assert.equal(metamaskMsgs[msgId].msgParams.from, address)
|
||||
})
|
||||
|
||||
it('persists data from msg params', function () {
|
||||
assert.equal(metamaskMsgs[msgId].msgParams.data, data)
|
||||
})
|
||||
|
||||
it('sets the status to unapproved', function () {
|
||||
assert.equal(metamaskMsgs[msgId].status, 'unapproved')
|
||||
})
|
||||
|
||||
it('sets the type to personal_sign', function () {
|
||||
assert.equal(metamaskMsgs[msgId].type, 'personal_sign')
|
||||
})
|
||||
})
|
||||
|
||||
describe('#setupUntrustedCommunication', function () {
|
||||
let streamTest
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user