#Nest can't reslove dependencies of the HealthCheckService
4 messages · Page 1 of 1 (latest)
are you sure that HealthCheckService isn't in any providers array of YOUR code? because it shouldn't (unless you want to create a mock or such)
like any other lib, you usually just call some LibModule.forRoot (or import the static module) that will register some provider for your module (HealthCheckService in your case)
Thanks solved