Skip to content

Commit a6a45c1

Browse files
authored
Chore/setup testing (#5)
* setup local ganache node for testing * addressed feedback
1 parent 18d8a24 commit a6a45c1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+17259
-855
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
node_modules
2-
coverage
2+
/test/hardhat/node_modules
3+
/test/hardhat/build
4+
/test/hardhat/.openzeppelin
5+
/coverage
36
coverage.json
47
.DS_Store
58
dist

jest.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module.exports = {
44
testMatch: ['**/test/**/*.test.ts'],
55
coverageReporters: ['html'],
66
collectCoverageFrom: ['src/**/*.ts', '!src/test/*.ts'],
7+
testTimeout: 60 * 1000,
78
coverageThreshold: {
89
global: {
910
branches: 95,

0 commit comments

Comments
 (0)