All files / src/listening-of-requests enlist-request-channel-listener.injectable.ts

100% Statements 18/18
100% Branches 2/2
100% Functions 2/2
100% Lines 18/18

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 191x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
/* c8 ignore start */
import { getInjectable } from "@ogre-tools/injectable";
import { enlistRequestChannelListenerInjectionToken } from "@k8slens/messaging";
 
const enlistRequestChannelListenerInjectable = getInjectable({
  id: "enlist-request-channel-listener-for-renderer",
 
  instantiate: () => (listener) => {
    throw new Error(
      `Tried to enlist request channel "${listener.channel.id}" in "renderer", but requesting it's not supported yet.`,
    );
  },
 
  injectionToken: enlistRequestChannelListenerInjectionToken,
});
 
export default enlistRequestChannelListenerInjectable;
/* c8 ignore end */