All files / shared/config index.ts

100% Statements 5/5
100% Branches 0/0
100% Functions 4/4
100% Lines 5/5

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            618x 32967x 3195x 1067x 65330x    
import { ClientConfig, clientConfig } from "shared/config/clientConfig";
import { eventConfig } from "shared/config/eventConfig";
import { EventConfig } from "shared/config/eventConfigTypes";
import { SentryConfig, sentryConfig } from "shared/config/sentryConfig";
import { ServerConfig, serverConfig } from "shared/config/serverConfig";
 
export const config = {
  client: (): ClientConfig => clientConfig,
  server: (): ServerConfig => serverConfig,
  sentry: (): SentryConfig => sentryConfig,
  event: (): EventConfig => eventConfig,
};