configStore.spec.tsx 361 B

123456789101112
  1. import ConfigStore from 'sentry/stores/configStore';
  2. describe('ConfigStore', () => {
  3. it('should have apiUrl and organizationUrl', () => {
  4. const links = ConfigStore.get('links');
  5. expect(links).toEqual({
  6. organizationUrl: 'https://foobar.sentry.io',
  7. regionUrl: 'https://us.sentry.io',
  8. sentryUrl: 'https://sentry.io',
  9. });
  10. });
  11. });