style: remove console

This commit is contained in:
Dexter 2022-05-12 19:16:46 +01:00
parent 5ab13f6a88
commit 6b296ebf78

View File

@ -18,7 +18,6 @@ export default class BlocksPage extends BasePage {
private waitForBlocksResponse() {
const base = Cypress.env('VEGA_TENDERMINT_URL');
const url = new URL('/tm/blockchain*', base).toString();
console.log(url);
cy.intercept(url).as('blockChain');
cy.wait('@blockChain');
}