From 5f88da34a759e5ab58be6764996c77b8fb233fff Mon Sep 17 00:00:00 2001 From: einhorn_b Date: Wed, 30 Aug 2023 19:24:48 +0200 Subject: [PATCH] new try fix e2e test --- .../support/step_definitions/send_coin_steps.ts | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/e2e-tests/cypress/support/step_definitions/send_coin_steps.ts b/e2e-tests/cypress/support/step_definitions/send_coin_steps.ts index dcf491e45..36f3a0e48 100644 --- a/e2e-tests/cypress/support/step_definitions/send_coin_steps.ts +++ b/e2e-tests/cypress/support/step_definitions/send_coin_steps.ts @@ -50,13 +50,14 @@ When('the user submits the transaction by confirming', () => { 'have.property', 'query', `mutation ($recipientCommunityIdentifier: String!, $recipientIdentifier: String!, $amount: Decimal!, $memo: String!) { - sendCoins( - recipientCommunityIdentifier: $recipientCommunityIdentifier - recipientIdentifier: $recipientIdentifier - amount: $amount - memo: $memo - ) - }`, + sendCoins( + recipientCommunityIdentifier: $recipientCommunityIdentifier + recipientIdentifier: $recipientIdentifier + amount: $amount + memo: $memo + ) + } + `, ) cy.wrap(interception.response?.body) .should('have.nested.property', 'data.sendCoins')