Files
atom/build-old/tasks/nof-task.coffee
2016-07-22 16:34:01 -06:00

7 lines
213 B
CoffeeScript

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())