We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e7fce9 commit 4628a96Copy full SHA for 4628a96
Gruntfile.js
@@ -1,4 +1,14 @@
1
"use strict";
2
+var fs = require('fs');
3
+var path = require('path');
4
+var http = require('http');
5
+var build = (function(){
6
+ // travis testing
7
+ if (process.env && process.env.BUILD) return process.env.BUILD == 'default' ? 'all' : 'nocompat';
8
+ // local testing
9
+ else return process.argv[2] == null || process.argv[2] == 'all' ? 'all' : 'nocompat';
10
+})();
11
+require('./Tests/httpServer.js')(build);
12
13
module.exports = function(grunt) {
14
0 commit comments