Skip to content

Commit

Permalink
test: fix git workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Jan 29, 2024
1 parent 1255b27 commit 1e1d35f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:

- name: Install dependencies
run: |
cd src/tests/cli-tests
npm ci
npm i zksync-cli
Expand All @@ -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
6 changes: 3 additions & 3 deletions test/common.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
Expand Down Expand Up @@ -142,7 +142,7 @@ xdescribe("Specific package can be updated using zksync-cli dev update <module n
});

//id1874
describe("User can call read method from deployed contract on network", () => {
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)"\
Expand All @@ -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") {
Expand Down

0 comments on commit 1e1d35f

Please sign in to comment.