vega-frontend-monorepo/apps/token-e2e/src/support/index.ts
2022-07-01 13:28:17 +01:00

15 lines
446 B
TypeScript

import '@vegaprotocol/cypress';
// Hide fetch/XHR requests - They create a lot of noise in command log
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.setAttribute('data-hide-command-log-request', '');
app.document.head.appendChild(style);
}