43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
module.exports = function(grunt) {
|
|
|
|
var watch = grunt.config('watch') || {};
|
|
var qunit = grunt.config('qunit') || {};
|
|
var testUrl = 'http://127.0.0.1:' + grunt.option('testPort');
|
|
var root = grunt.option('root');
|
|
|
|
var testRunners = root + '/taoClientDiagnostic/views/js/test/**/test.html';
|
|
var testFiles = root + '/taoClientDiagnostic/views/js/test/**/test.js';
|
|
|
|
//extract unit tests
|
|
var extractTests = function extractTests(){
|
|
return grunt.file.expand([testRunners]).map(function(path){
|
|
return path.replace(root, testUrl);
|
|
});
|
|
};
|
|
|
|
/**
|
|
* tests to run
|
|
*/
|
|
qunit.taoclientdiagnostictest = {
|
|
options : {
|
|
console : true,
|
|
urls : extractTests()
|
|
}
|
|
};
|
|
|
|
|
|
watch.taoclientdiagnostictest = {
|
|
files : [testRunners, testFiles],
|
|
tasks : ['qunit:taoclientdiagnostictest'],
|
|
options : {
|
|
debounceDelay : 10000
|
|
}
|
|
};
|
|
|
|
grunt.config('qunit', qunit);
|
|
grunt.config('watch', watch);
|
|
|
|
// bundle task
|
|
grunt.registerTask('taoclientdiagnostictest', ['qunit:taoclientdiagnostictest']);
|
|
};
|