summaryrefslogtreecommitdiffstats
path: root/install/ui/Gruntfile.js
blob: ba464112776390e246224a049120aa4a392912d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module.exports = function(grunt) {
    grunt.initConfig({
        qunit_junit: {
            options: {}
        },
        qunit: {
            all: [
                'test/all_tests.html'
            ]
        }
    });

    grunt.loadNpmTasks('grunt-qunit-junit');
    grunt.loadNpmTasks('grunt-contrib-qunit');
    grunt.registerTask('test', ['qunit_junit', 'qunit']);
};