1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/kata-for-gabriel/src/message-to-player.injectable.ts
Iku-turso 287afa5483 Add placeholders for places that should escape code-coverage for a good reason: side-effects
Co-authored-by: Janne Savolainen <janne.savolainen@live.fi>

Signed-off-by: Iku-turso <mikko.aspiala@gmail.com>
2023-03-15 10:29:12 +02:00

12 lines
285 B
TypeScript

/* ignore coverage somehow */
import { getInjectable } from "@ogre-tools/injectable";
const messageToPlayerInjectable = getInjectable({
id: "message-to-player",
instantiate: () => (message: string) => {},
causesSideEffects: true,
});
export default messageToPlayerInjectable;