I\'m using Typescript 2.1(developer version) to transpile async/await to ES5.
I\'ve noticed that after I change any property which is bound to view in my async funct
As @basarat said the native ES6 Promise doesn't know about the digest cycle. You should to promise
async testAsync() { await this.$timeout(2000).toPromise() .then(response => this.text = "Changed"); }