chore: remove outdated todos

This commit is contained in:
Evan You
2018-09-21 17:10:02 -04:00
parent 9fcd30b483
commit 8de1c484ff
2 changed files with 0 additions and 4 deletions

View File

@@ -323,8 +323,6 @@ describe('observer/autorun', () => {
it('should allow explicitly recursive raw function loops', () => {
const counter = observable({ num: 0 })
// TODO: this should be changed to autorun loops, can it be done?
const numSpy = jest.fn(() => {
counter.num++
if (counter.num < 10) {
@@ -332,7 +330,6 @@ describe('observer/autorun', () => {
}
})
autorun(numSpy)
expect(counter.num).toEqual(10)
expect(numSpy).toHaveBeenCalledTimes(10)
})