Skip to content

Commit 3923844

Browse files
ToDROP test coverage erroring
1 parent 09e16fd commit 3923844

File tree

2 files changed

+2
-20
lines changed

2 files changed

+2
-20
lines changed

.circleci/config.yml

+1-19
Original file line numberDiff line numberDiff line change
@@ -66,27 +66,9 @@ jobs:
6666
- run:
6767
name: "Provision lib artefacts"
6868
command: npm run provision:lib:artefacts
69-
- run:
70-
name: "Test deployment scripts"
71-
command: npm run ganache >/dev/null 2>&1 & npm run test:deployment
72-
no_output_timeout: 60m
73-
- run:
74-
name: "Running unit tests"
75-
command: npm run ganache >/dev/null 2>&1 & npm run test
76-
# Save test artifacts
77-
- store_artifacts:
78-
path: gas-usage-report.log
79-
destination: reports/gas-usage-report.log
80-
- run: npx codechecks
81-
- run:
82-
name: "Running integration tests"
83-
command: npm run mainnet-fork >/dev/null 2>&1 & npm run test:integration
8469
- run:
8570
name: "Running coverage"
86-
command: |
87-
npm run compile
88-
npm run compile:test
89-
npm run test:coverage
71+
command: npm run test:coverage
9072
- <<: *step_save_cache
9173
# Save coverage artifacts
9274
- store_artifacts:

test/aaveV2.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ contract("AaveV2 Filter", (accounts) => {
146146

147147
it("should allow deposits on behalf of wallet", async () => {
148148
const { success, error } = await deposit(wallet.address);
149-
assert.isTrue(success, `deposit failed: "${error}"`);
149+
assert.isFalse(success, `deposit failed: "${error}"`);
150150
});
151151

152152
it("should not allow deposits on behalf of non-wallet", async () => {

0 commit comments

Comments
 (0)