Minimal NPM setup for automated testing of your client-side JS library.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: node_js | |
node_js: | |
- "node" | |
branches: | |
only: | |
- master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "project-name", | |
"description": "My Project's Description", | |
"version": "0.0.1", | |
"scripts": { | |
"test": "karma start test/karma.conf.js --single-run" | |
}, | |
"devDependencies": { | |
"jasmine-core": "*", | |
"karma": "*", | |
"karma-cli": "*", | |
"karma-jasmine": "*", | |
"karma-phantomjs-launcher": "*", | |
"phantomjs-prebuilt": "*" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment