diff --git a/README.md b/README.md index d81b0a06be..91fc59ef0d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This repository is a monorepo consisting of 3 packages: - [API](./packages/api) - a service providing Web API for retrieving structured [zkSync Era](https://zksync.io) blockchain data collected by [Worker](./packages/worker). It connects to the Worker's database to be able to query the collected data. - [App](./packages/app) - a front-end app providing an easy-to-use interface for users to view and inspect transactions, blocks, contracts and more. It makes requests to the [API](./packages/api) to get the data and presents it in a way that's easy to read and understand. -Also the repository contains [integration-test](./integration-tests) folder with a set of sdk-ui/sdk-api tests. Follow this [Readme](./integration-tests/README.md) for more details. +Also the repository contains [integration-test](./integration-tests) folder with a set of ui/api tests. Follow this [Readme](./integration-tests/README.md) for more details. ## 🏛 Architecture The following diagram illustrates how are the block explorer components connected: diff --git a/package.json b/package.json index cec421f45d..f65a4f7583 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,7 @@ "repository": "https://github.com/matter-labs/block-explorer", "private": true, "workspaces": [ - "packages/*", - "integration-tests" + "packages/*" ], "scripts": { "prepare": "husky install", @@ -17,8 +16,8 @@ "test": "lerna run test", "test:ci": "lerna run test:ci", "test:e2e": "lerna run test:e2e", - "test:sdk-ui": "lerna run test:sdk-ui", - "test:sdk-api": "lerna run test:sdk-api", + "test:ui": "lerna run test:ui", + "test:api": "lerna run test:api", "dev": "lerna run dev", "build": "lerna run build", "start": "lerna run start", diff --git a/integration-tests/.commitlintrc.json b/packages/integration-tests/.commitlintrc.json similarity index 100% rename from integration-tests/.commitlintrc.json rename to packages/integration-tests/.commitlintrc.json diff --git a/integration-tests/.eslintrc.js b/packages/integration-tests/.eslintrc.js similarity index 100% rename from integration-tests/.eslintrc.js rename to packages/integration-tests/.eslintrc.js diff --git a/integration-tests/.gitignore b/packages/integration-tests/.gitignore similarity index 100% rename from integration-tests/.gitignore rename to packages/integration-tests/.gitignore diff --git a/integration-tests/README.md b/packages/integration-tests/README.md similarity index 81% rename from integration-tests/README.md rename to packages/integration-tests/README.md index cbbd428833..928250b527 100644 --- a/integration-tests/README.md +++ b/packages/integration-tests/README.md @@ -19,19 +19,19 @@ Before the test run, there needs to spin a local environment up: docker-compose -f docker-compose.yaml up ``` -## How to run sdk-api tests +## How to run api tests -- all tests: ```bash -npm run test:sdk-api +npm run test:api ``` -## How to run sdk-ui tests +## How to run ui tests -- all tests: ```bash -npm run test:sdk-ui +npm run test:ui ``` If there is a necessity to run the exact test or/and suite you need change @@ -50,8 +50,8 @@ The test solution contains two main folders: [src](./src) and [tests](./tests). - [utils](./src/playbook/utils/) folder with utils scripts [tests](./tests) folder contains sets of: -- [sdk-api](./tests/sdk-api/) endpoints tests, that cover an essential part of [worker](../packages/worker/) and [api](../packages/api/) functionality -- [sdk-ui](./tests/sdk-ui/) UI tests. that cover an essential part of [BE UI](../packages/app/) functionality +- [api](./tests/api/) endpoints tests, that cover an essential part of [worker](../packages/worker/) and [api](../packages/api/) functionality +- [ui](./tests/ui/) UI tests. that cover an essential part of [BE UI](../packages/app/) functionality The presented logic/code (/utils, /deploy, /contracts) of custom ERC20 token deployment has been taking from diff --git a/integration-tests/jest.config.json b/packages/integration-tests/jest.config.json similarity index 100% rename from integration-tests/jest.config.json rename to packages/integration-tests/jest.config.json diff --git a/integration-tests/package-lock.json b/packages/integration-tests/package-lock.json similarity index 100% rename from integration-tests/package-lock.json rename to packages/integration-tests/package-lock.json diff --git a/integration-tests/package.json b/packages/integration-tests/package.json similarity index 95% rename from integration-tests/package.json rename to packages/integration-tests/package.json index dd931b77aa..65508c5c15 100644 --- a/integration-tests/package.json +++ b/packages/integration-tests/package.json @@ -9,8 +9,8 @@ "license": "MIT", "scripts": { "postinstall": "cd src/playbook && npm install", - "test:sdk-api": "jest --verbose", - "test:sdk-ui": "npx playwright test", + "test:api": "jest --verbose", + "test:ui": "npx playwright test", "dev:be": "docker-compose -f docker-compose.yaml up\n", "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore --ignore-pattern 'repos' --ignore-pattern 'git add .'" }, diff --git a/integration-tests/playwright.config.ts b/packages/integration-tests/playwright.config.ts similarity index 84% rename from integration-tests/playwright.config.ts rename to packages/integration-tests/playwright.config.ts index 55b12f0946..9718b2c1f5 100644 --- a/integration-tests/playwright.config.ts +++ b/packages/integration-tests/playwright.config.ts @@ -1,8 +1,8 @@ import { defineConfig, devices } from "@playwright/test"; -import { config } from "tests/sdk-ui/config"; +import { config } from "tests/ui/config"; export default defineConfig({ - testDir: "tests/sdk-ui", + testDir: "tests/ui", fullyParallel: true, projects: [ { diff --git a/integration-tests/src/config.ts b/packages/integration-tests/src/config.ts similarity index 100% rename from integration-tests/src/config.ts rename to packages/integration-tests/src/config.ts diff --git a/integration-tests/src/entities.ts b/packages/integration-tests/src/entities.ts similarity index 100% rename from integration-tests/src/entities.ts rename to packages/integration-tests/src/entities.ts diff --git a/integration-tests/src/helper.ts b/packages/integration-tests/src/helper.ts similarity index 100% rename from integration-tests/src/helper.ts rename to packages/integration-tests/src/helper.ts diff --git a/integration-tests/src/playbook/buffer/.gitkeep b/packages/integration-tests/src/playbook/buffer/.gitkeep similarity index 100% rename from integration-tests/src/playbook/buffer/.gitkeep rename to packages/integration-tests/src/playbook/buffer/.gitkeep diff --git a/integration-tests/src/playbook/contracts/Caller.sol b/packages/integration-tests/src/playbook/contracts/Caller.sol similarity index 100% rename from integration-tests/src/playbook/contracts/Caller.sol rename to packages/integration-tests/src/playbook/contracts/Caller.sol diff --git a/integration-tests/src/playbook/contracts/Greeter.sol b/packages/integration-tests/src/playbook/contracts/Greeter.sol similarity index 100% rename from integration-tests/src/playbook/contracts/Greeter.sol rename to packages/integration-tests/src/playbook/contracts/Greeter.sol diff --git a/integration-tests/src/playbook/contracts/L1.sol b/packages/integration-tests/src/playbook/contracts/L1.sol similarity index 100% rename from integration-tests/src/playbook/contracts/L1.sol rename to packages/integration-tests/src/playbook/contracts/L1.sol diff --git a/integration-tests/src/playbook/contracts/L2.sol b/packages/integration-tests/src/playbook/contracts/L2.sol similarity index 100% rename from integration-tests/src/playbook/contracts/L2.sol rename to packages/integration-tests/src/playbook/contracts/L2.sol diff --git a/integration-tests/src/playbook/contracts/Middle.sol b/packages/integration-tests/src/playbook/contracts/Middle.sol similarity index 100% rename from integration-tests/src/playbook/contracts/Middle.sol rename to packages/integration-tests/src/playbook/contracts/Middle.sol diff --git a/integration-tests/src/playbook/contracts/MultiTransfer.sol b/packages/integration-tests/src/playbook/contracts/MultiTransfer.sol similarity index 100% rename from integration-tests/src/playbook/contracts/MultiTransfer.sol rename to packages/integration-tests/src/playbook/contracts/MultiTransfer.sol diff --git a/integration-tests/src/playbook/contracts/MyERC20.sol b/packages/integration-tests/src/playbook/contracts/MyERC20.sol similarity index 100% rename from integration-tests/src/playbook/contracts/MyERC20.sol rename to packages/integration-tests/src/playbook/contracts/MyERC20.sol diff --git a/integration-tests/src/playbook/contracts/MyNFT.sol b/packages/integration-tests/src/playbook/contracts/MyNFT.sol similarity index 100% rename from integration-tests/src/playbook/contracts/MyNFT.sol rename to packages/integration-tests/src/playbook/contracts/MyNFT.sol diff --git a/integration-tests/src/playbook/contracts/MyPaymaster.sol b/packages/integration-tests/src/playbook/contracts/MyPaymaster.sol similarity index 100% rename from integration-tests/src/playbook/contracts/MyPaymaster.sol rename to packages/integration-tests/src/playbook/contracts/MyPaymaster.sol diff --git a/integration-tests/src/playbook/contracts/Root.sol b/packages/integration-tests/src/playbook/contracts/Root.sol similarity index 100% rename from integration-tests/src/playbook/contracts/Root.sol rename to packages/integration-tests/src/playbook/contracts/Root.sol diff --git a/integration-tests/src/playbook/deploy/deploy-greeter.ts b/packages/integration-tests/src/playbook/deploy/deploy-greeter.ts similarity index 100% rename from integration-tests/src/playbook/deploy/deploy-greeter.ts rename to packages/integration-tests/src/playbook/deploy/deploy-greeter.ts diff --git a/integration-tests/src/playbook/deploy/deploy-paymaster.ts b/packages/integration-tests/src/playbook/deploy/deploy-paymaster.ts similarity index 100% rename from integration-tests/src/playbook/deploy/deploy-paymaster.ts rename to packages/integration-tests/src/playbook/deploy/deploy-paymaster.ts diff --git a/integration-tests/src/playbook/deploy/erc20toL1.ts b/packages/integration-tests/src/playbook/deploy/erc20toL1.ts similarity index 100% rename from integration-tests/src/playbook/deploy/erc20toL1.ts rename to packages/integration-tests/src/playbook/deploy/erc20toL1.ts diff --git a/integration-tests/src/playbook/deploy/erc20toL2.ts b/packages/integration-tests/src/playbook/deploy/erc20toL2.ts similarity index 100% rename from integration-tests/src/playbook/deploy/erc20toL2.ts rename to packages/integration-tests/src/playbook/deploy/erc20toL2.ts diff --git a/integration-tests/src/playbook/deploy/multiTransferETH.ts b/packages/integration-tests/src/playbook/deploy/multiTransferETH.ts similarity index 100% rename from integration-tests/src/playbook/deploy/multiTransferETH.ts rename to packages/integration-tests/src/playbook/deploy/multiTransferETH.ts diff --git a/integration-tests/src/playbook/deploy/multicallCaller.ts b/packages/integration-tests/src/playbook/deploy/multicallCaller.ts similarity index 100% rename from integration-tests/src/playbook/deploy/multicallCaller.ts rename to packages/integration-tests/src/playbook/deploy/multicallCaller.ts diff --git a/integration-tests/src/playbook/deploy/multicallMiddle.ts b/packages/integration-tests/src/playbook/deploy/multicallMiddle.ts similarity index 100% rename from integration-tests/src/playbook/deploy/multicallMiddle.ts rename to packages/integration-tests/src/playbook/deploy/multicallMiddle.ts diff --git a/integration-tests/src/playbook/deploy/multicallRoot.ts b/packages/integration-tests/src/playbook/deploy/multicallRoot.ts similarity index 100% rename from integration-tests/src/playbook/deploy/multicallRoot.ts rename to packages/integration-tests/src/playbook/deploy/multicallRoot.ts diff --git a/integration-tests/src/playbook/deploy/nftToL1.ts b/packages/integration-tests/src/playbook/deploy/nftToL1.ts similarity index 100% rename from integration-tests/src/playbook/deploy/nftToL1.ts rename to packages/integration-tests/src/playbook/deploy/nftToL1.ts diff --git a/integration-tests/src/playbook/deploy/nftToL2.ts b/packages/integration-tests/src/playbook/deploy/nftToL2.ts similarity index 100% rename from integration-tests/src/playbook/deploy/nftToL2.ts rename to packages/integration-tests/src/playbook/deploy/nftToL2.ts diff --git a/integration-tests/src/playbook/deploy/use-greeter.ts b/packages/integration-tests/src/playbook/deploy/use-greeter.ts similarity index 100% rename from integration-tests/src/playbook/deploy/use-greeter.ts rename to packages/integration-tests/src/playbook/deploy/use-greeter.ts diff --git a/integration-tests/src/playbook/deploy/use-multiCall.ts b/packages/integration-tests/src/playbook/deploy/use-multiCall.ts similarity index 100% rename from integration-tests/src/playbook/deploy/use-multiCall.ts rename to packages/integration-tests/src/playbook/deploy/use-multiCall.ts diff --git a/integration-tests/src/playbook/deploy/use-multitransferETH.ts b/packages/integration-tests/src/playbook/deploy/use-multitransferETH.ts similarity index 100% rename from integration-tests/src/playbook/deploy/use-multitransferETH.ts rename to packages/integration-tests/src/playbook/deploy/use-multitransferETH.ts diff --git a/integration-tests/src/playbook/deploy/use-paymaster.ts b/packages/integration-tests/src/playbook/deploy/use-paymaster.ts similarity index 100% rename from integration-tests/src/playbook/deploy/use-paymaster.ts rename to packages/integration-tests/src/playbook/deploy/use-paymaster.ts diff --git a/integration-tests/src/playbook/hardhat.config.ts b/packages/integration-tests/src/playbook/hardhat.config.ts similarity index 100% rename from integration-tests/src/playbook/hardhat.config.ts rename to packages/integration-tests/src/playbook/hardhat.config.ts diff --git a/integration-tests/src/playbook/package-lock.json b/packages/integration-tests/src/playbook/package-lock.json similarity index 100% rename from integration-tests/src/playbook/package-lock.json rename to packages/integration-tests/src/playbook/package-lock.json diff --git a/integration-tests/src/playbook/package.json b/packages/integration-tests/src/playbook/package.json similarity index 100% rename from integration-tests/src/playbook/package.json rename to packages/integration-tests/src/playbook/package.json diff --git a/integration-tests/src/playbook/playbook.ts b/packages/integration-tests/src/playbook/playbook.ts similarity index 100% rename from integration-tests/src/playbook/playbook.ts rename to packages/integration-tests/src/playbook/playbook.ts diff --git a/integration-tests/src/playbook/scenarios/deploy/deployERC20toL1.ts b/packages/integration-tests/src/playbook/scenarios/deploy/deployERC20toL1.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/deploy/deployERC20toL1.ts rename to packages/integration-tests/src/playbook/scenarios/deploy/deployERC20toL1.ts diff --git a/integration-tests/src/playbook/scenarios/deploy/deployERC20toL2.ts b/packages/integration-tests/src/playbook/scenarios/deploy/deployERC20toL2.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/deploy/deployERC20toL2.ts rename to packages/integration-tests/src/playbook/scenarios/deploy/deployERC20toL2.ts diff --git a/integration-tests/src/playbook/scenarios/deploy/deployGreeterToL2.ts b/packages/integration-tests/src/playbook/scenarios/deploy/deployGreeterToL2.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/deploy/deployGreeterToL2.ts rename to packages/integration-tests/src/playbook/scenarios/deploy/deployGreeterToL2.ts diff --git a/integration-tests/src/playbook/scenarios/deploy/deployMulticallContracts.ts b/packages/integration-tests/src/playbook/scenarios/deploy/deployMulticallContracts.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/deploy/deployMulticallContracts.ts rename to packages/integration-tests/src/playbook/scenarios/deploy/deployMulticallContracts.ts diff --git a/integration-tests/src/playbook/scenarios/deploy/deployMultitransferETH.ts b/packages/integration-tests/src/playbook/scenarios/deploy/deployMultitransferETH.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/deploy/deployMultitransferETH.ts rename to packages/integration-tests/src/playbook/scenarios/deploy/deployMultitransferETH.ts diff --git a/integration-tests/src/playbook/scenarios/deploy/deployNFTtoL1.ts b/packages/integration-tests/src/playbook/scenarios/deploy/deployNFTtoL1.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/deploy/deployNFTtoL1.ts rename to packages/integration-tests/src/playbook/scenarios/deploy/deployNFTtoL1.ts diff --git a/integration-tests/src/playbook/scenarios/deploy/deployNFTtoL2.ts b/packages/integration-tests/src/playbook/scenarios/deploy/deployNFTtoL2.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/deploy/deployNFTtoL2.ts rename to packages/integration-tests/src/playbook/scenarios/deploy/deployNFTtoL2.ts diff --git a/integration-tests/src/playbook/scenarios/deploy/deployViaPaymaster.ts b/packages/integration-tests/src/playbook/scenarios/deploy/deployViaPaymaster.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/deploy/deployViaPaymaster.ts rename to packages/integration-tests/src/playbook/scenarios/deploy/deployViaPaymaster.ts diff --git a/integration-tests/src/playbook/scenarios/deposit/depositERC20.ts b/packages/integration-tests/src/playbook/scenarios/deposit/depositERC20.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/deposit/depositERC20.ts rename to packages/integration-tests/src/playbook/scenarios/deposit/depositERC20.ts diff --git a/integration-tests/src/playbook/scenarios/deposit/depositETH.ts b/packages/integration-tests/src/playbook/scenarios/deposit/depositETH.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/deposit/depositETH.ts rename to packages/integration-tests/src/playbook/scenarios/deposit/depositETH.ts diff --git a/integration-tests/src/playbook/scenarios/transfers/transferERC20.ts b/packages/integration-tests/src/playbook/scenarios/transfers/transferERC20.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/transfers/transferERC20.ts rename to packages/integration-tests/src/playbook/scenarios/transfers/transferERC20.ts diff --git a/integration-tests/src/playbook/scenarios/transfers/transferETH.ts b/packages/integration-tests/src/playbook/scenarios/transfers/transferETH.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/transfers/transferETH.ts rename to packages/integration-tests/src/playbook/scenarios/transfers/transferETH.ts diff --git a/integration-tests/src/playbook/scenarios/transfers/transferFailedState.ts b/packages/integration-tests/src/playbook/scenarios/transfers/transferFailedState.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/transfers/transferFailedState.ts rename to packages/integration-tests/src/playbook/scenarios/transfers/transferFailedState.ts diff --git a/integration-tests/src/playbook/scenarios/transfers/useGreeter.ts b/packages/integration-tests/src/playbook/scenarios/transfers/useGreeter.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/transfers/useGreeter.ts rename to packages/integration-tests/src/playbook/scenarios/transfers/useGreeter.ts diff --git a/integration-tests/src/playbook/scenarios/transfers/useMultiCall.ts b/packages/integration-tests/src/playbook/scenarios/transfers/useMultiCall.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/transfers/useMultiCall.ts rename to packages/integration-tests/src/playbook/scenarios/transfers/useMultiCall.ts diff --git a/integration-tests/src/playbook/scenarios/transfers/useMultitransferETH.ts b/packages/integration-tests/src/playbook/scenarios/transfers/useMultitransferETH.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/transfers/useMultitransferETH.ts rename to packages/integration-tests/src/playbook/scenarios/transfers/useMultitransferETH.ts diff --git a/integration-tests/src/playbook/scenarios/transfers/usePaymaster.ts b/packages/integration-tests/src/playbook/scenarios/transfers/usePaymaster.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/transfers/usePaymaster.ts rename to packages/integration-tests/src/playbook/scenarios/transfers/usePaymaster.ts diff --git a/integration-tests/src/playbook/scenarios/withdrawal/withdrawERC20.ts b/packages/integration-tests/src/playbook/scenarios/withdrawal/withdrawERC20.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/withdrawal/withdrawERC20.ts rename to packages/integration-tests/src/playbook/scenarios/withdrawal/withdrawERC20.ts diff --git a/integration-tests/src/playbook/scenarios/withdrawal/withdrawERC20toOtherAddress.ts b/packages/integration-tests/src/playbook/scenarios/withdrawal/withdrawERC20toOtherAddress.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/withdrawal/withdrawERC20toOtherAddress.ts rename to packages/integration-tests/src/playbook/scenarios/withdrawal/withdrawERC20toOtherAddress.ts diff --git a/integration-tests/src/playbook/scenarios/withdrawal/withdrawETH.ts b/packages/integration-tests/src/playbook/scenarios/withdrawal/withdrawETH.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/withdrawal/withdrawETH.ts rename to packages/integration-tests/src/playbook/scenarios/withdrawal/withdrawETH.ts diff --git a/integration-tests/src/playbook/scenarios/withdrawal/withdrawETHtoOtherAddress.ts b/packages/integration-tests/src/playbook/scenarios/withdrawal/withdrawETHtoOtherAddress.ts similarity index 100% rename from integration-tests/src/playbook/scenarios/withdrawal/withdrawETHtoOtherAddress.ts rename to packages/integration-tests/src/playbook/scenarios/withdrawal/withdrawETHtoOtherAddress.ts diff --git a/integration-tests/src/playbook/utils/displayVerificationInfo.ts b/packages/integration-tests/src/playbook/utils/displayVerificationInfo.ts similarity index 100% rename from integration-tests/src/playbook/utils/displayVerificationInfo.ts rename to packages/integration-tests/src/playbook/utils/displayVerificationInfo.ts diff --git a/integration-tests/src/playbook/utils/getWallet.ts b/packages/integration-tests/src/playbook/utils/getWallet.ts similarity index 100% rename from integration-tests/src/playbook/utils/getWallet.ts rename to packages/integration-tests/src/playbook/utils/getWallet.ts diff --git a/integration-tests/tests/sdk-api/deposit.test.ts b/packages/integration-tests/tests/api/deposit.test.ts similarity index 100% rename from integration-tests/tests/sdk-api/deposit.test.ts rename to packages/integration-tests/tests/api/deposit.test.ts diff --git a/integration-tests/tests/sdk-api/endpoints.test.ts b/packages/integration-tests/tests/api/endpoints.test.ts similarity index 100% rename from integration-tests/tests/sdk-api/endpoints.test.ts rename to packages/integration-tests/tests/api/endpoints.test.ts diff --git a/integration-tests/tests/sdk-api/nft.test.ts b/packages/integration-tests/tests/api/nft.test.ts similarity index 100% rename from integration-tests/tests/sdk-api/nft.test.ts rename to packages/integration-tests/tests/api/nft.test.ts diff --git a/integration-tests/tests/sdk-api/tokens.test.ts b/packages/integration-tests/tests/api/tokens.test.ts similarity index 100% rename from integration-tests/tests/sdk-api/tokens.test.ts rename to packages/integration-tests/tests/api/tokens.test.ts diff --git a/integration-tests/tests/sdk-api/transactions/multiCall.test.ts b/packages/integration-tests/tests/api/transactions/multiCall.test.ts similarity index 100% rename from integration-tests/tests/sdk-api/transactions/multiCall.test.ts rename to packages/integration-tests/tests/api/transactions/multiCall.test.ts diff --git a/integration-tests/tests/sdk-api/transactions/multiTransfer.test.ts b/packages/integration-tests/tests/api/transactions/multiTransfer.test.ts similarity index 100% rename from integration-tests/tests/sdk-api/transactions/multiTransfer.test.ts rename to packages/integration-tests/tests/api/transactions/multiTransfer.test.ts diff --git a/integration-tests/tests/sdk-api/transactions/transaction.test.ts b/packages/integration-tests/tests/api/transactions/transaction.test.ts similarity index 100% rename from integration-tests/tests/sdk-api/transactions/transaction.test.ts rename to packages/integration-tests/tests/api/transactions/transaction.test.ts diff --git a/integration-tests/tests/sdk-api/transfers.test.ts b/packages/integration-tests/tests/api/transfers.test.ts similarity index 100% rename from integration-tests/tests/sdk-api/transfers.test.ts rename to packages/integration-tests/tests/api/transfers.test.ts diff --git a/integration-tests/tests/sdk-api/withdrawal.test.ts b/packages/integration-tests/tests/api/withdrawal.test.ts similarity index 100% rename from integration-tests/tests/sdk-api/withdrawal.test.ts rename to packages/integration-tests/tests/api/withdrawal.test.ts diff --git a/integration-tests/tests/sdk-ui/config.ts b/packages/integration-tests/tests/ui/config.ts similarity index 100% rename from integration-tests/tests/sdk-ui/config.ts rename to packages/integration-tests/tests/ui/config.ts diff --git a/integration-tests/tests/sdk-ui/multiCall.spec.ts b/packages/integration-tests/tests/ui/multiCall.spec.ts similarity index 100% rename from integration-tests/tests/sdk-ui/multiCall.spec.ts rename to packages/integration-tests/tests/ui/multiCall.spec.ts diff --git a/integration-tests/tests/sdk-ui/nft.spec.ts b/packages/integration-tests/tests/ui/nft.spec.ts similarity index 100% rename from integration-tests/tests/sdk-ui/nft.spec.ts rename to packages/integration-tests/tests/ui/nft.spec.ts diff --git a/integration-tests/tsconfig.json b/packages/integration-tests/tsconfig.json similarity index 100% rename from integration-tests/tsconfig.json rename to packages/integration-tests/tsconfig.json