Skip to content

Commit

Permalink
test: lower watch delay.
Browse files Browse the repository at this point in the history
  • Loading branch information
StreetStrider committed Feb 26, 2016
1 parent cfb42d0 commit 91fe69a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('watch', () =>
{
var s = watch('*', { cwd: lil })

setTimeout(() => s.end(true), 250)
setTimeout(() => s.end(true), 10)

return stream.streamEquals(s,
[
Expand All @@ -46,7 +46,7 @@ describe('watch', () =>
{
var s = watch('**/*', { cwd: lil })

setTimeout(() => s.end(true), 250)
setTimeout(() => s.end(true), 10)

return stream.streamEquals(s,
[
Expand All @@ -61,7 +61,7 @@ describe('watch', () =>
{
var s = watch([ '*.txt', '*/*' ], { cwd: lil })

setTimeout(() => s.end(true), 250)
setTimeout(() => s.end(true), 10)

return stream.streamEquals(s,
[
Expand All @@ -75,7 +75,7 @@ describe('watch', () =>
{
var s = watch([], { cwd: lil })

setTimeout(() => s.end(true), 250)
setTimeout(() => s.end(true), 10)

return stream.streamEquals(s, [])
})
Expand Down

0 comments on commit 91fe69a

Please sign in to comment.