-
Notifications
You must be signed in to change notification settings - Fork 375
/
Gruntfile.js
48 lines (38 loc) · 1.34 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* jshint ignore:start */
const testRunner = require('./lib/qunit-puppeteer.js');
/* jshint ignore:end */
module.exports = function(grunt) {
'use strict';
/* jshint ignore:start */
/* This is used in an await statement, which apaprently JSHint doesn't like */
const PORT = 4000;
/* jshint ignore:end */
// Project configuration
const config = require('./grunt-config-options');
config.pkg = grunt.file.readJSON('package.json');
grunt.initConfig(config);
require('load-grunt-tasks')(grunt);
grunt.registerTask('dev', ['jshint', 'test:all', 'browserify', 'test:browserify', 'mochaTest']);
grunt.registerTask('build', ['dev', 'concat', 'uglify', 'test:dist']);
grunt.registerTask('default', ['dev']);
/* jshint ignore:start */
grunt.registerTask('test', 'Executes QUnit tests with all supported jQuery versions', async function() {
/* jshint ignore:end */
const done = this.async();
const versionUrls = require('./test/build-version-urls')(grunt.config, arguments[0], arguments[1], arguments[2]);
console.log(versionUrls);
for (let i=0; i<versionUrls.length; ++i) {
try {
console.log('LOADING', versionUrls[i]);
/* jshint ignore:start */
await testRunner(versionUrls[i], PORT);
/* jshint ignore:end */
} catch(err) {
return done(err);
}
}
done();
/* jshint ignore:start */
});
/* jshint ignore:end */
};