Skip to content

Commit

Permalink
Bump test cmd to fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
alsco77 committed Jan 3, 2021
1 parent 34a4265 commit 92c4fed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"lint-sol": "solium -d contracts/ --fix ",
"coverage": "yarn hardhat compile --force && node --max_old_space_size=6144 node_modules/.bin/hardhat coverage --temp 'build/contracts' --testfiles 'test/**/Test*.ts' --show-stack-traces",
"script": "yarn truffle exec ./scripts/main.js",
"test": "yarn hardhat test;",
"test": "node --max_old_space_size=4096 node_modules/.bin/hardhat test;",
"test-file": "yarn hardhat test",
"test:fork": "yarn run compile; yarn hardhat test --network fork;",
"compile": "yarn hardhat compile --force",
Expand Down
2 changes: 1 addition & 1 deletion test/savings/TestSavingsContract.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ contract("SavingsContract", async (accounts) => {
it("should withdraw from the connector if total supply lowers");
});
context("with no connector", () => {
it("simply updates the exchangeRate with the new balance");
it("simply updates the exchangeRate using the raw balance");
});
});

Expand Down

0 comments on commit 92c4fed

Please sign in to comment.