configStore.spec.tsx 309 B

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