mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
13 lines
381 B
JavaScript
13 lines
381 B
JavaScript
|
|
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)
|
|
}
|