remove Stripe from onramp deep-link test fixtures (Stripe account disabled)

Stripe is no longer an available fiat on-ramp provider. Drop it from the
buy-link provider test fixtures; moonpay+coinbasepay still exercise the
multi-provider parse and case-normalization paths.
This commit is contained in:
zeekay
2026-06-24 12:34:20 -07:00
parent a86efad105
commit 83e2706fb6
@@ -588,7 +588,7 @@ describe('handleLuxAppDeepLink', () => {
it('should handle buy link with multiple providers', () => {
const path = 'buy'
const url = 'https://lux.exchange/buy?providers=moonpay,coinbasepay,stripe'
const url = 'https://lux.exchange/buy?providers=moonpay,coinbasepay'
return expectSaga(handleLuxAppDeepLink, {
path,
@@ -604,7 +604,7 @@ describe('handleLuxAppDeepLink', () => {
prefilledAmount: undefined,
currencyCode: undefined,
prefilledIsTokenInputMode: false,
providers: ['MOONPAY', 'COINBASEPAY', 'STRIPE'],
providers: ['MOONPAY', 'COINBASEPAY'],
},
}),
),
@@ -616,7 +616,7 @@ describe('handleLuxAppDeepLink', () => {
it('should handle buy link with providers in mixed case (converted to uppercase)', () => {
const path = 'buy'
const url = 'https://lux.exchange/buy?providers=MoonPay,coinbasepay,STRIPE'
const url = 'https://lux.exchange/buy?providers=MoonPay,coinbasepay'
return expectSaga(handleLuxAppDeepLink, {
path,
@@ -632,7 +632,7 @@ describe('handleLuxAppDeepLink', () => {
prefilledAmount: undefined,
currencyCode: undefined,
prefilledIsTokenInputMode: false,
providers: ['MOONPAY', 'COINBASEPAY', 'STRIPE'],
providers: ['MOONPAY', 'COINBASEPAY'],
},
}),
),