docIntegration.ts 628 B

123456789101112131415161718192021222324
  1. import type {DocIntegration as DocIntegrationType} from 'sentry/types/integrations';
  2. export function DocIntegrationFixture(
  3. params: Partial<DocIntegrationType>
  4. ): DocIntegrationType {
  5. return {
  6. name: 'hellboy',
  7. slug: 'hellboy',
  8. author: 'hellboy',
  9. description: 'no work just meow meow',
  10. url: 'https://www.meow.com',
  11. popularity: 8,
  12. isDraft: false,
  13. features: [
  14. {
  15. description:
  16. "Organizations can **open a line to Sentry's stack trace** in another service.",
  17. featureGate: 'integrations-stacktrace-link',
  18. featureId: 23,
  19. },
  20. ],
  21. ...params,
  22. };
  23. }