I am using angular 6. One of the http calls returns a ZoneAwarePromise when I try to convert the Observable into a Promise. Also the then block is not getting called.
const login = this.authService.login(email, password).toPromise()
login.then(() => {\* not getting called*\})
Can someone explain what is a ZoneAwarePromise ?