Skip to content

Commit

Permalink
test: normal run
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Jan 31, 2024
1 parent 9c4df65 commit f2d2596
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/common.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe("Check version of package", () => {
});

//id1734 id1715
describe("Check help for:", () => {
xdescribe("Check help for:", () => {
it("npx zksync-cli help", () => {
const command = "npx zksync-cli help";
const result = executeCommand(command);
Expand Down Expand Up @@ -64,7 +64,7 @@ describe("Check help for:", () => {
});

//id1715
describe("Check help selection for:", () => {
xdescribe("Check help selection for:", () => {
it("npx zksync-cli dev --help", () => {
const command = "npx zksync-cli dev --help";
const result = executeCommand(command);
Expand Down Expand Up @@ -92,7 +92,7 @@ describe("Check help selection for:", () => {
});

//id1719
describe("User can check installed modules", () => {
xdescribe("User can check installed modules", () => {
it("npx zksync-cli dev modules", () => {
const command = "npx zksync-cli dev modules";
const result = executeCommand(command);
Expand All @@ -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 na
});

//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 f2d2596

Please sign in to comment.