test: lint

This commit is contained in:
AndyWhiteVega 2022-07-01 13:43:02 +01:00
parent b85bd71918
commit db81af1f2a

View File

@ -4,7 +4,8 @@ import '@vegaprotocol/cypress';
const app = window.top;
if (!app.document.head.querySelector('[data-hide-command-log-request]')) {
const style = app.document.createElement('style');
style.innerHTML = '.command-name-request, .command-name-xhr { display: none }';
style.innerHTML =
'.command-name-request, .command-name-xhr { display: none }';
style.setAttribute('data-hide-command-log-request', '');
app.document.head.appendChild(style);
}
}