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')
|
2013-08-20 07:20:34 +04:00
|
|
|
spawn({cmd: nof, args: ['spec']}, @async())
|