aboutsummaryrefslogblamecommitdiffstats
path: root/app/scripts/lib/setupMetamaskMeshMetrics.js
blob: fd3b93fc430fdcb48958529e85bd92b74570ed49 (plain) (tree)
1
2
3
4
5
6
7


                                         
   
                                                          
   
                                      




                                                                   

module.exports = setupMetamaskMeshMetrics

/**
 * Injects an iframe into the current 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)
}