123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import {mountWithTheme} from 'sentry-test/enzyme';
- import ConfigStore from 'app/stores/configStore';
- import App from 'app/views/app';
- describe('App', function () {
- beforeEach(function () {
- MockApiClient.addMockResponse({
- url: '/organizations/',
- body: [TestStubs.Organization({slug: 'billy-org', name: 'billy org'})],
- });
- MockApiClient.addMockResponse({
- url: '/internal/health/',
- body: {
- problems: [],
- },
- });
- MockApiClient.addMockResponse({
- url: '/assistant/?v2',
- body: [],
- });
- });
- it('renders newsletter consent with flag', async function () {
- const user = ConfigStore.get('user');
- user.flags.newsletter_consent_prompt = true;
- // XXX(dcramer): shouldn't need to re-set
- ConfigStore.set('user', user);
- const wrapper = mountWithTheme(
- <App params={{orgId: 'org-slug'}}>{<div>placeholder content</div>}</App>
- );
- expect(wrapper.find('NewsletterConsent')).toHaveLength(1);
- });
- it('does not render newsletter consent without flag', async function () {
- const user = ConfigStore.get('user');
- user.flags.newsletter_consent_prompt = false;
- // XXX(dcramer): shouldn't need to re-set
- ConfigStore.set('user', user);
- const wrapper = mountWithTheme(
- <App params={{orgId: 'org-slug'}}>{<div>placeholder content</div>}</App>
- );
- expect(wrapper.find('NewsletterConsent')).toHaveLength(0);
- });
- });
|