a simple demo with Jasmine, Browserify, and Gulp on NodeJS
I want to unit test my JS libraries AND use it in my browser.
Read the blog post that walks through this repo to add GulpJS, gulp-jasmine, and browserify.
// Run default task to run specs and generate minified JS
gulp
Why did you include the node_modules
dir?
- Per the npm-faq, "Check
node_modules
into git for things you deploy, such as websites and apps."
Why did you not include the [insert task here] Gulp task? Why did you organize your folders that way? Why didn't you include more test cases?
- This demo is intended as an easy to understand example of using Gulp + Jasmine + Browserify together. This demo is not a production ready project.
MIT