WIP: [Sprint/JollyJellyfish](feat) Plus tiers engine#578
Depends on engine#578 Closes mobile-native#1093 (closed)
Need to add tests before im happy.
0/2 threads resolved
mentioned in merge request engine!279
changed the description
changed the description
1 import { Component, ChangeDetectorRef } from '@angular/core'; 2 import { CurrencyPipe } from '@angular/common'; 3 import { OverlayModalService } from '../../../services/ux/overlay-modal'; 4 import { Client } from '../../../services/api'; 5 import { Session } from '../../../services/session'; 6 import { Router } from '@angular/router'; 7 import { WirePaymentsCreatorComponent } from '../../wire/payments-creator/creator.component'; 8 export type PayloadType = 'onchain' | 'offchain'; 9 10 @Component({ 11 providers: [CurrencyPipe], 12 selector: 'm-wire-payments--payment-plan', - Owner
double check the selector here, looks out of context
88 90 amount: 10, 89 91 payload: { address: 'offchain', token: 'tok_KPte7942xySKBKyrBu11yEpf', method: 'creditcard' }, 90 92 method: 'tokens', 93 recurring: false, 94 tier: '' 95 }); 96 })); 97 98 fit('should post the plus tier if one is selected', fakeAsync(() => { - Owner
arghhhh!
- Owner
Looking good. Beware of modal -> modal flow though, I think it will replace it and close the previous one down (so not going back).
Also, please don't push up
fit
.. we should open a ticket to put something in the CI to warn us.