From c1c0d960ebb65dd1702432aae3edc0f35954b02c Mon Sep 17 00:00:00 2001 From: daro-maj <119658839+daro-maj@users.noreply.github.com> Date: Mon, 13 Feb 2023 12:41:45 +0100 Subject: [PATCH] chore(trading): fixed copy prompt alert for chrome (#2899) --- apps/trading-e2e/src/integration/market-info.cy.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/trading-e2e/src/integration/market-info.cy.ts b/apps/trading-e2e/src/integration/market-info.cy.ts index eed729f2c..4eb5ee259 100644 --- a/apps/trading-e2e/src/integration/market-info.cy.ts +++ b/apps/trading-e2e/src/integration/market-info.cy.ts @@ -72,6 +72,9 @@ describe('market info is displayed', { tags: '@smoke' }, () => { it('settlement asset displayed', () => { cy.getByTestId(marketTitle).contains('Settlement asset').click(); + cy.window().then((win) => { + cy.stub(win, 'prompt').returns('DISABLED WINDOW PROMPT'); + }); validateMarketDataRow(0, 'ID', 'asset-id'); validateMarketDataRow(1, 'Type', 'ERC20'); validateMarketDataRow(2, 'Name', 'Euro');