Skip to content

Commit

Permalink
Merge branch 'chore/initialize-relayer-testing' into refactor/lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
fcanela committed Dec 10, 2024
2 parents 71c5280 + a9a3c00 commit 4b5b491
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"es6": true,
"node": true,
"mocha": true,
"es2020": true
"es2020": true,
"jest": true
},
"extends": [
"eslint:recommended",
Expand Down
3 changes: 1 addition & 2 deletions relayer-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"yarn": "^1.22.22"
"ts-node": "^10.9.2"
}
}
2 changes: 1 addition & 1 deletion relayer-cli/src/utils/shutdownManager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe("ShutdownManager", () => {
expect(instance.getIsShuttingDown()).toBe(true);
});

it("should return true when isShuttingDown is false", () => {
it("should return false when isShuttingDown is false", () => {
const instance = new ShutdownManager(false);
expect(instance.getIsShuttingDown()).toBe(false);
});
Expand Down

0 comments on commit 4b5b491

Please sign in to comment.