BBM16

Results 3 comments of BBM16

to anyone coming here to know how to setup different `registerEndpoint`responses on the same test file, here's the way: ``` const mocks = vi.hoisted(() => { return { fetchProjects: vi.fn(),...

Just another example through flattening: ```typescript type Flat = { [K in keyof T]: T[K] } type AppendToObject = Flat; ```