From 7f292ca364b726280b41296b9767c6c20bfa750d Mon Sep 17 00:00:00 2001 From: patrick Date: Tue, 20 Sep 2022 16:40:27 +0200 Subject: [PATCH] revert --- .../dummy/app/ui/routes/application/complex-helper.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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; }