From f36d9b2c21273f953424fefaad79853ce408ad44 Mon Sep 17 00:00:00 2001 From: Oleh Bairak Date: Mon, 5 Feb 2024 18:38:23 +0100 Subject: [PATCH] fix: new one --- .github/workflows/integration-tests-api.yml | 18 +++++++++--------- .../tests/api/accounts.test.ts | 3 +++ 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/integration-tests-api.yml b/.github/workflows/integration-tests-api.yml index f191349d4c..b26667670f 100644 --- a/.github/workflows/integration-tests-api.yml +++ b/.github/workflows/integration-tests-api.yml @@ -11,17 +11,17 @@ jobs: checks: write strategy: matrix: - node-version: ['lts/*'] # 18.17.1 or lts/* + node-version: ['lts/*'] # 18.17.1 or lts/* test-pattern: - accounts.test.ts - - addresses.test.ts - - batches.test.ts - - blocks.test.ts - - contracts.test.ts - - logs.test.ts - - stats.test.ts - - tokens.test.ts - - transactions.test.ts + #- addresses.test.ts + #- batches.test.ts + #- blocks.test.ts + #- contracts.test.ts + #- logs.test.ts + #- stats.test.ts + #- tokens.test.ts + #- transactions.test.ts name: 'API test set: ${{ matrix.test-pattern}} / Node: ${{ matrix.node-version}}' steps: - name: Checkout with Submodule diff --git a/packages/integration-tests/tests/api/accounts.test.ts b/packages/integration-tests/tests/api/accounts.test.ts index 65697c1789..ef839bc9a9 100644 --- a/packages/integration-tests/tests/api/accounts.test.ts +++ b/packages/integration-tests/tests/api/accounts.test.ts @@ -18,6 +18,9 @@ describe("API module: Account", () => { describe("/address/{address}", () => { beforeAll(async () => { await playbook.deployNFTtoL2(); + await playbook.deployMultiTransferETH(); + await playbook.useMultiTransferETH(); + await playbook.withdrawETH(); }); //@id1704