mirror of
				https://github.com/django/django.git
				synced 2025-11-03 05:13:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			353 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			353 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var globalThreshold = 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']);
 | 
						|
};
 |