Skip to content

Commit

Permalink
temporarily disabled grunt-casper
Browse files Browse the repository at this point in the history
### REASON
npm install fails on grunt-casper becauseof slimmerjs
see iamchrismiller/grunt-casper#78

### TODO
I do not yet understand the intent of test-case that uses casper,
so i'll rewrite test-case later with reference to old
  • Loading branch information
kyungilpark committed Jun 27, 2019
1 parent a944bb9 commit 634982f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-casper');
// grunt.loadNpmTasks('grunt-casper');

grunt.registerTask('runtest',function(){
var done = this.async();
Expand Down Expand Up @@ -136,7 +136,8 @@ module.exports = function(grunt) {

grunt.registerTask('optimize', ['uglify']);
// Default task.
grunt.registerTask('test', ['jshint', 'nodeunit', 'runtest', 'runbin', 'casper']);
// grunt.registerTask('test', ['jshint', 'nodeunit', 'runtest', 'runbin', 'casper']);
grunt.registerTask('test', ['jshint', 'nodeunit', 'runtest', 'runbin']);
grunt.registerTask('default', ['test']);

};
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
},
"devDependencies": {
"grunt": "~1.0.1",
"grunt-casper": "~0.4.0",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-nodeunit": "~1.0.0",
"grunt-contrib-uglify": "~1.0.1",
Expand Down

0 comments on commit 634982f

Please sign in to comment.