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