Skip to content

Commit

Permalink
test: make less sensitive to timing
Browse files Browse the repository at this point in the history
  • Loading branch information
Tylor Steinberger committed Oct 11, 2017
1 parent 12c5c21 commit a3132b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/stream/src/combinators/state.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ export const test: Test = describe(`state`, [
setTimeout(() => {
const expected = [100, 101, 103, 200, 201, 203]
collectEvents(sut)
.then(actual => console.log(actual) || equal(expected, actual))
.then(equal(expected))
.then(() => done())
.catch(done)
}, 500)
}, 550)

collectEvents(sut)
}),
Expand Down

0 comments on commit a3132b6

Please sign in to comment.