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

    grunt.loadNpmTasks('grunt-contrib-qunit');
};