|
| 1 | +/* eslint-disable jest/no-disabled-tests */ |
1 | 2 | import {OrganizationFixture} from 'sentry-fixture/organization';
|
2 | 3 |
|
3 | 4 | import {BillingConfigFixture} from 'getsentry-test/fixtures/billingConfig';
|
@@ -644,7 +645,7 @@ describe('provisionSubscriptionAction', function () {
|
644 | 645 | );
|
645 | 646 | });
|
646 | 647 |
|
647 |
| - it('retains on-demand budget when toggled', async () => { |
| 648 | + it.skip('retains on-demand budget when toggled', async () => { |
648 | 649 | const am2Sub = SubscriptionFixture({
|
649 | 650 | organization: mockOrg,
|
650 | 651 | plan: 'am2_f',
|
@@ -782,7 +783,7 @@ describe('provisionSubscriptionAction', function () {
|
782 | 783 | );
|
783 | 784 | }, 10_000);
|
784 | 785 |
|
785 |
| - it('removes retain on-demand budget toggle when plan changes', async () => { |
| 786 | + it.skip('removes retain on-demand budget toggle when plan changes', async () => { |
786 | 787 | const am2Sub = SubscriptionFixture({
|
787 | 788 | organization: mockOrg,
|
788 | 789 | plan: 'am2_f',
|
@@ -942,7 +943,7 @@ describe('provisionSubscriptionAction', function () {
|
942 | 943 | );
|
943 | 944 | }, 10000);
|
944 | 945 |
|
945 |
| - it('calls api with correct am2 args', async () => { |
| 946 | + it.skip('calls api with correct am2 args', async () => { |
946 | 947 | const am2Sub = SubscriptionFixture({organization: mockOrg, plan: 'am2_f'});
|
947 | 948 | triggerProvisionSubscription({
|
948 | 949 | subscription: am2Sub,
|
@@ -1076,7 +1077,7 @@ describe('provisionSubscriptionAction', function () {
|
1076 | 1077 | );
|
1077 | 1078 | }, 10_000);
|
1078 | 1079 |
|
1079 |
| - it('calls api with correct am3 args', async () => { |
| 1080 | + it.skip('calls api with correct am3 args', async () => { |
1080 | 1081 | const am3Sub = SubscriptionFixture({organization: mockOrg, plan: 'am3_f'});
|
1081 | 1082 | triggerProvisionSubscription({
|
1082 | 1083 | subscription: am3Sub,
|
@@ -1210,7 +1211,7 @@ describe('provisionSubscriptionAction', function () {
|
1210 | 1211 | );
|
1211 | 1212 | }, 10_000);
|
1212 | 1213 |
|
1213 |
| - it('calls api with correct am3 dynamic sampling args', async () => { |
| 1214 | + it.skip('calls api with correct am3 dynamic sampling args', async () => { |
1214 | 1215 | const am3Sub = SubscriptionFixture({organization: mockOrg, plan: 'am3_f'});
|
1215 | 1216 | triggerProvisionSubscription({
|
1216 | 1217 | subscription: am3Sub,
|
@@ -1343,7 +1344,7 @@ describe('provisionSubscriptionAction', function () {
|
1343 | 1344 | );
|
1344 | 1345 | }, 10_000);
|
1345 | 1346 |
|
1346 |
| - it('calls api with correct manually invoiced on-demand args', async () => { |
| 1347 | + it.skip('calls api with correct manually invoiced on-demand args', async () => { |
1347 | 1348 | const am2Sub = SubscriptionFixture({organization: mockOrg, plan: 'am2_f'});
|
1348 | 1349 | triggerProvisionSubscription({
|
1349 | 1350 | subscription: am2Sub,
|
|
0 commit comments