Skip to content
This repository was archived by the owner on Feb 1, 2022. It is now read-only.

Commit 5a57f98

Browse files
author
Jan Krems
committed
chore: Run tests on windows
1 parent 36c35ef commit 5a57f98

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules/
22
npm-debug.log
33
/tmp
4+
/.vs

appveyor.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
environment:
2+
nodejs_version: "6"
3+
4+
install:
5+
- ps: Install-Product node $env:nodejs_version
6+
- npm install
7+
8+
test_script:
9+
- node --version
10+
- npm --version
11+
- npm test
12+
13+
build: off

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"scripts": {
1717
"pretest": "eslint --rulesdir=tools/eslint-rules lib test",
18-
"test": "tap 'test/**/*.test.js'",
18+
"test": "tap \"test/**/*.test.js\"",
1919
"posttest": "nlm verify"
2020
},
2121
"nlm": {

0 commit comments

Comments
 (0)