Last active
March 26, 2018 01:06
-
-
Save bryanbraun/4a955cc30c394f137b0d to your computer and use it in GitHub Desktop.
Minimal NPM setup for automated testing of your client-side JS library.
This file contains hidden or 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 hidden or 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