PermalinkSwitch branches/tags django/Gruntfile.js/
Go to file
Cannot retrieve contributors at this time
main
Could not load branches
Nothing to show
{{ refName }}default
Could not load tags
Nothing to show
{{ refName }}defaultdjango/Gruntfile.js/Jump to
Code definitions
Go to fileJump to
- Go to file
Copy path Copy permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
'use strict'; | |
constglobalThreshold=50;// Global code coverage threshold (as a percentage) | |
module.exports=function(grunt){ | |
grunt.initConfig({ | |
qunit:{ | |
all:['js_tests/tests.html'] | |
} | |
}); | |
grunt.loadNpmTasks('grunt-contrib-qunit'); | |
grunt.registerTask('test',['qunit']); | |
grunt.registerTask('default',['test']); | |
}; |