Can this still be easily unit tested?
Archiviert 3 months ago
S
wobby (ᵔᴥᵔ)
Spielt Custom Status
Script Kiddie!
```ts
import { inject } from 'vue'
import { IocEnum } from '@/enums/ioc-enum'
export function useConversation() {
// TODO Check if this is the optimal injection way
const logger: ConsoleLogger = inject(IocEnum.LOGGER)!
}
```
Can this still be easily unit tested?
