2
0

Gruntfile.js 369 B

123456789101112131415
  1. 'use strict';
  2. const globalThreshold = 50; // Global code coverage threshold (as a percentage)
  3. module.exports = function(grunt) {
  4. grunt.initConfig({
  5. qunit: {
  6. all: ['js_tests/tests.html']
  7. }
  8. });
  9. grunt.loadNpmTasks('grunt-contrib-qunit');
  10. grunt.registerTask('test', ['qunit']);
  11. grunt.registerTask('default', ['test']);
  12. };