File tree 2 files changed +2
-20
lines changed
2 files changed +2
-20
lines changed Original file line number Diff line number Diff line change 66
66
- run :
67
67
name : " Provision lib artefacts"
68
68
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
84
69
- run :
85
70
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
90
72
- << : *step_save_cache
91
73
# Save coverage artifacts
92
74
- store_artifacts :
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ contract("AaveV2 Filter", (accounts) => {
146
146
147
147
it ( "should allow deposits on behalf of wallet" , async ( ) => {
148
148
const { success, error } = await deposit ( wallet . address ) ;
149
- assert . isTrue ( success , `deposit failed: "${ error } "` ) ;
149
+ assert . isFalse ( success , `deposit failed: "${ error } "` ) ;
150
150
} ) ;
151
151
152
152
it ( "should not allow deposits on behalf of non-wallet" , async ( ) => {
You can’t perform that action at this time.
0 commit comments