1
0
mirror of https://github.com/django/django.git synced 2024-11-20 16:34:17 +00:00
django/Gruntfile.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
369 B
JavaScript
Raw Normal View History

'use strict';
const 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']);
};