blob: 79b9cb2490b572507873d108f831cd9071edec95 (
plain) (
tree)
|
|
module.exports = setupMetamaskMeshMetrics
/**
* Injects an iframe into the curerent document for testing
*/
function setupMetamaskMeshMetrics() {
const testingContainer = document.createElement('iframe')
testingContainer.src = 'https://metamask.github.io/mesh-testing/'
console.log('Injecting MetaMask Mesh testing client')
document.head.appendChild(testingContainer)
}
|