diff --git a/test-folders/helper-tests/dummy/app/ui/routes/application/complex-helper.js b/test-folders/helper-tests/dummy/app/ui/routes/application/complex-helper.js index b21295a..47bae37 100644 --- a/test-folders/helper-tests/dummy/app/ui/routes/application/complex-helper.js +++ b/test-folders/helper-tests/dummy/app/ui/routes/application/complex-helper.js @@ -6,10 +6,12 @@ export default class ComplexHelper extends Helper { text = 'abc'; compute(params, hash) { if (this.text === 'abc') { - later(() => { - this.text += 'd'; - this.recompute(); - }, 1000); + setTimeout(() => { + later(() => { + this.text += 'd'; + this.recompute(); + }, 5); + }, 1000) } return this.text; }