Skip to content

Commit

Permalink
test(integration): update second opinion integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
tamtamchik committed Nov 26, 2024
1 parent eb9195f commit 97612ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"lint-staged": {
"./**/*.ts": [
"eslint --max-warnings=0"
"eslint --max-warnings=0 --fix"
],
"./**/*.{ts,md,json}": [
"prettier --write"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/accounting.integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {

const AMOUNT = ether("100");

describe("Accounting", () => {
describe("Integration: Accounting", () => {
let ctx: ProtocolContext;

let ethHolder: HardhatEthersSigner;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function getDiffAmount(totalSupply: bigint): bigint {
return (totalSupply / 10n / ONE_GWEI) * ONE_GWEI;
}

describe("Second opinion", () => {
describe("Integration: Second opinion", () => {
let ctx: ProtocolContext;

let ethHolder: HardhatEthersSigner;
Expand Down

0 comments on commit 97612ee

Please sign in to comment.