| 60 | // We extend the global test context with our custom functions that we pass into the context in beforeEach |
| 61 | declare module "vitest" { |
| 62 | export interface TestContext { |
| 63 | renderStub: typeof renderStub |
| 64 | renderHook: typeof renderHook |
| 65 | } |
| 66 | } |
| 67 | // We pass in our custom functions to the test context |
| 68 | beforeEach((ctx) => { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…