Skip to content
This repository has been archived by the owner on Nov 1, 2020. It is now read-only.

Commit

Permalink
Fix test command
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Nov 14, 2015
1 parent 5faa746 commit a8818eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ environment:
install:
- ps: Install-Product node $env:nodejs_version
- npm install -g npm
- set PATH=%APPDATA%\npm;%PATH%
- npm install

# Post-install test scripts.
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.1.18",
"babel-core": "^6.1.21",
"babel-istanbul": "^0.5.8",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-2": "^6.1.18",
"coveralls": "^2.11.4",
"csslint": "^0.10.0",
"in-publish": "^2.0.0",
"mocha": "^2.3.3",
"rimraf": "^2.4.3",
"standard": "^5.3.1"
Expand All @@ -46,8 +48,8 @@
"lint": "standard",
"precover": "npm run lint && npm run compile-test",
"prelint": "npm run clean",
"prepublish": "npm run compile",
"prepublish": "not-in-install && npm run compile || echo this is npm install",
"pretest": "npm run lint",
"test": "mocha --compilers js:babel/register"
"test": "mocha --compilers js:babel-core/register"
}
}

0 comments on commit a8818eb

Please sign in to comment.