A TypeScript mocking library that lets you isolate and control dependencies during testing.
ts-mockito offers a strongly typed approach to create test doubles for classes and objects in TypeScript, drawing inspiration from Mockito.org. You can install it using `npm install ts-mockito --save-dev`, then use functions like `mock()`, `when()`, and `verify()` to define mock behavior and assert method calls. It supports features like spying on real objects, capturing arguments, and checking call counts.
A TypeScript mocking library that lets you isolate and control dependencies during testing.
TypeScript developers who need to create controlled test environments by mocking dependencies.