pulsar/tasks/nof-task.coffee

7 lines
213 B
CoffeeScript
Raw Normal View History

2013-06-27 20:07:33 +04:00
module.exports = (grunt) ->
{spawn} = require('./task-helpers')(grunt)
grunt.registerTask 'nof', 'Un-focus all specs', ->
nof = require.resolve('.bin/nof')
spawn({cmd: nof, args: ['spec']}, @async())