mirror of
https://github.com/luxfi/wallet.git
synced 2026-07-27 03:37:41 +00:00
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:
@@ -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'],
|
||||
},
|
||||
}),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user