I just noticed today, when i run:
grunt jasmine
That create a folder .grunt in my main project folder with :grunt-contrib-jasmine , that is normal? i dont't think so.
I am Using Phantomjs for test by terminal
I have already that folder in my node_modules grunt-contrib-jasmine
I am not understand why everytime when i run a test creat that folder, any idea?
package.json
"devDependencies": {
"grunt": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-jade": "*",
"grunt-contrib-jasmine": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-sass": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*"
},
"dependencies": {
"phantomjs": "^1.9.18"
}
Gruntfile.js
var jasmine;
config.jasmine = jasmine = {};
jasmine.test = {
src:"public/javascripts/test/test.js"
, options:{
specs: "spec/test.spec.js"
, keepRunner: true
// , host: 'http://localhost/demo-site/'
}
};