After adding routing to my basic app through app.routing.ts, I encountered errors in all of my test files stating that no Router is provided.
To resolve the errors, I found that I can add imports: [RouterTestingModule]
, but is there a way to globally import this?
I attempted to import it in app.module
without success, so I'm seeking alternative solutions.