Below is a test scenario present in my spec file,
it (should create,()=>{
const url = (<jasmine.spy> http.get).calls.args(0)[0]
expect(url).toBe('/api/get')
});
Upon execution, I encounter the following linting issue.
Type assertion using the '<>' is forbidden, use as instead?
If anyone has any suggestions or solutions, please feel free to share. Thank you!