Skip to content

Commit b3f91dc

Browse files
committed
Interpreter and test cases
1 parent c991ef5 commit b3f91dc

23 files changed

+990
-60
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
22
coverage
3+
.vscode

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ node_js:
33
- "6"
44
cache:
55
- node_modules
6-
before_install:
6+
install:
77
- npm install
8+
- npm install -g codecov
89
script:
9-
- npm test
10-
after_script:
11-
- npm run coverage
10+
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec
11+
- codecov
12+

0 commit comments

Comments
 (0)