Skip to content

Commit 1ab2db1

Browse files
authored
tests: add script to run testrpc and coverage (#186)
* tests: add script to run testrpc and coverage * tests: add coverage config file
1 parent 103a372 commit 1ab2db1

File tree

7 files changed

+4990
-2944
lines changed

7 files changed

+4990
-2944
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
build/
2+
coverage/
23
node_modules/
34
truffle.js

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ node_modules/
44
# Ignore truffle stuff
55
build/
66

7+
# Coverage tests
8+
coverage/
9+
710
.privkey.txt
811
.infurakey.txt
9-
.DS_Store
12+
.DS_Store

.solcover.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const skipFiles = ['bancor', 'bytes']
2+
3+
module.exports = {
4+
providerOptions: {
5+
mnemonic: 'myth like bonus scare over problem client lizard pioneer submit female collect',
6+
network_id: 15,
7+
},
8+
skipFiles,
9+
}

0 commit comments

Comments
 (0)