From 92c4fed527092e57e7f1348c8cb1f39063f9a56d Mon Sep 17 00:00:00 2001 From: alsco77 Date: Sun, 3 Jan 2021 19:38:17 +0100 Subject: [PATCH] Bump test cmd to fix github actions --- package.json | 2 +- test/savings/TestSavingsContract.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index acb9d57b..c64fa2da 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/test/savings/TestSavingsContract.spec.ts b/test/savings/TestSavingsContract.spec.ts index 07147970..16925144 100644 --- a/test/savings/TestSavingsContract.spec.ts +++ b/test/savings/TestSavingsContract.spec.ts @@ -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"); }); });