Sha256: 5c5992d4249282bcf7bd65f0553b2a668a106a4a7981284b38db2f9c1c09693f
Contents?: true
Size: 1.8 KB
Versions: 19
Compression:
Stored size: 1.8 KB
Contents
module.exports = function (grunt) { grunt.task.registerTask('qtest', 'run tests locally', function () { var done = this.async(), testrunner, tests; testrunner = require('node-qunit'); testrunner.options.log.assertions = false; testrunner.options.log.tests = false; testrunner.options.log.summary = false; testrunner.options.log.testing = false; testrunner.options.maxBlockDuration = 600000; if (grunt.option('only') != null) { tests = grunt.file.expand.apply( null, grunt .option('only') .split(',') .map(function (file) { if (file === 'moment') { return 'build/umd/test/moment/*.js'; } else if (file === 'locale') { return 'build/umd/test/locale/*.js'; } else { return 'build/umd/test/' + file + '.js'; } }) ); } else { tests = grunt.file.expand( 'build/umd/test/moment/*.js', 'build/umd/test/locale/*.js' ); } testrunner.run( { code: 'build/umd/moment.js', tests: tests, }, function (err, report) { if (err) { console.log('woot', err, report); done(err); return; } err = null; if (report.failed !== 0) { err = new Error(report.failed + ' tests failed'); } done(err); } ); }); };
Version data entries
19 entries across 19 versions & 1 rubygems