diff --git a/.github/workflows/integration-tests-api.yml b/.github/workflows/integration-tests-api.yml index 590f67e5ef..54ae0a0c5e 100644 --- a/.github/workflows/integration-tests-api.yml +++ b/.github/workflows/integration-tests-api.yml @@ -13,10 +13,11 @@ jobs: matrix: node-version: ['lts/*'] # 18.17.1 or lts/* test-pattern: + - qwe.test.ts # - accounts.test.ts # - addresses.test.ts - - batches.test.ts - - blocks.test.ts + # - batches.test.ts + # - blocks.test.ts # - contracts.test.ts # - logs.test.ts # - stats.test.ts diff --git a/packages/integration-tests/tests/hooks/global.ts b/packages/integration-tests/tests/hooks/global.ts index 2512d8878f..8f99c3fb94 100644 --- a/packages/integration-tests/tests/hooks/global.ts +++ b/packages/integration-tests/tests/hooks/global.ts @@ -7,10 +7,10 @@ export default async () => { const helper = new Helper(); const bufferRoute = "src/playbook/"; - await playbook.deployERC20toL2(); - await playbook.deployERC20toL1(); - await playbook.depositETH("0.0000001"); - const bufferFile = bufferRoute + Buffer.L1; - const token = await helper.getStringFromFile(bufferFile); - await playbook.depositERC20("100", token, 18); + // await playbook.deployERC20toL2(); + // await playbook.deployERC20toL1(); + // await playbook.depositETH("0.0000001"); + // const bufferFile = bufferRoute + Buffer.L1; + // const token = await helper.getStringFromFile(bufferFile); + // await playbook.depositERC20("100", token, 18); };