I have the following test case in my spec,
it (should create,()=>{
const url = (<jasmine.spy> http.get).calls.args(0)[0]
expect(url).toBe('/api/get')
});
When I run it, I am getting the following lint error.
Type assertion using the '<>' is forbidden, use as instead?
Can anyone please suggest help.