},
'typescript-test': {
command: 'npm run typescript-test'
+ },
+ 'coveralls': {
+ command: 'npm run coveralls'
}
}
grunt.registerTask('test:meteor', ['exec:meteor-init', 'exec:meteor-test', 'exec:meteor-cleanup']);
// travis build task
- grunt.registerTask('build:travis', ['default']);
+ grunt.registerTask('build:travis', ['default', 'exec:coveralls']);
grunt.registerTask('meteor-publish', ['exec:meteor-init', 'exec:meteor-publish', 'exec:meteor-cleanup']);
// Task to be run when releasing a new version
testrunner.options.log.tests = false;
testrunner.options.log.summary = false;
testrunner.options.log.testing = false;
- testrunner.options.maxBlockDuration = 120000;
+ testrunner.options.maxBlockDuration = 600000;
var tests;