Skip to content

Commit bc8f1b0

Browse files
committed
test: add tests
1 parent 62d5675 commit bc8f1b0

24 files changed

+1685
-145
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
node_modules
1+
node_modules
2+
.nyc_output

.travis.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
language: node_js
2+
3+
node:
4+
- '12'
5+
6+
before_script:
7+
- npm install -g mocha
8+
- npm install --dev
9+
10+
cache:
11+
npm: false
12+
13+
script:
14+
- npm test
15+
16+
branches:
17+
except:
18+
- dev
19+
20+
21+
jobs:
22+
include:
23+
- os: linux
24+
dist: bionic
25+
- os: osx
26+
osx_image: xcode11.4
27+
- os: windows
28+
29+
after_success: npm run coverage

0 commit comments

Comments
 (0)