UNPKG

ember-cli-ajh

Version:

Command line tool for developing ambitious ember.js apps

53 lines (51 loc) 1.58 kB
'use strict'; module.exports = function (grunt) { require('load-grunt-tasks')(grunt); grunt.initConfig({ jshint: { options: { jshintrc: '.jshintrc' }, files: [ 'Gruntfile.js', 'bin/*', 'lib/**/*.js', 'test/**/*.js', '!test/assets/**/*', '!test/reports/**/*', '!test/tmp/**/*' ] }, simplemocha: { options: { reporter: 'spec', timeout: '10000' }, full: { src: ['test/test.js'] }, short: { options: { reporter: 'dot' }, src: ['test/test.js'] } }, exec: { cover: { command: 'STRICT_REQUIRE=1 node node_modules/istanbul/lib/cli.js cover --dir ./test/reports node_modules/mocha/bin/_mocha -- --timeout 30000 -R dot test/test.js' }, coveralls: { command: 'node node_modules/.bin/coveralls < test/reports/lcov.info' } }, watch: { files: ['<%= jshint.files %>'], tasks: ['jshint', 'simplemocha:short'] } }); grunt.registerTask('test', ['jshint', 'simplemocha:full']); grunt.registerTask('cover', 'exec:cover'); grunt.registerTask('travis', ['jshint', 'exec:cover', 'exec:coveralls']); grunt.registerTask('default', 'test'); };