diff --git a/.github/workflows/test-cli.yml b/.github/workflows/test-cli.yml index 0d26dc2e..013518ef 100644 --- a/.github/workflows/test-cli.yml +++ b/.github/workflows/test-cli.yml @@ -32,7 +32,6 @@ jobs: - name: Install dependencies run: | - cd src/tests/cli-tests npm ci npm i zksync-cli @@ -41,6 +40,5 @@ jobs: CI: true E2E_TESTNET_PK: ${{ secrets.E2E_TESTNET_PK }} run: | - cd src/tests/cli-tests npx jest --verbose --testPathPattern=${{ matrix.tags }} shell: bash diff --git a/test/common.test.ts b/test/common.test.ts index 99f4a2b6..76dcd32a 100644 --- a/test/common.test.ts +++ b/test/common.test.ts @@ -104,7 +104,7 @@ describe("User can check installed modules", () => { }); //id1869 -describe("Check wallet balance of specified address", () => { +xdescribe("Check wallet balance of specified address", () => { const partialCommand = "npx zksync-cli wallet balance"; it(`${partialCommand} | on Sepolia Testnet`, () => { const command = `${partialCommand} --chain zksync-sepolia --address ${adresses.sepoliaTestnet}`; @@ -142,7 +142,7 @@ xdescribe("Specific package can be updated using zksync-cli dev update { +xdescribe("User can call read method from deployed contract on network", () => { it("npx zksync-cli contract read", () => { const command = `npx zksync-cli contract read --chain zksync-sepolia\ --contract ${contracts.sepoliaTestnet} --method "greet() view returns (string)"\ @@ -156,7 +156,7 @@ describe("User can call read method from deployed contract on network", () => { }); //id1875 -describe("User can call write method from deployed contract on network", () => { +xdescribe("User can call write method from deployed contract on network", () => { it("npx zksync-cli contract write", () => { let optionalRedirection = "> /dev/null"; if (process.platform === "win32") {