Skip to content

Commit

Permalink
Update common.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu authored Mar 13, 2024
1 parent ae17b39 commit d6e9744
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions test/common.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,11 @@ describe("Dev tests", () => {

it("npx zksync-cli dev start", () => {
const command = "npx zksync-cli dev start";
const result = executeCommand(command);
console.log(result.output);
expect(result.exitCode).toBe(0);
const result1 = executeCommand(command);
console.log("first run:" + result1.output);
const result2 = executeCommand(command);
console.log("first run:" + result2.output);
expect(result2.exitCode).toBe(0);
});

//id1718 - excluded
Expand Down

0 comments on commit d6e9744

Please sign in to comment.