git checkout -b <branchname>
git add
git commit -m "description of changes"
| import react, { Component } from 'React'; | |
| import _ from 'lodash'; | |
| import row from './row'; | |
| /** Styles to buttons **/ | |
| const styleToAddButton = { | |
| backgroundColor: 'green', | |
| color: 'white' | |
| } |
| const requestWithCardAndNewCustomer = flexRequestBuilder.build( | |
| flexRequestBuilder.withNewCustomer, | |
| flexRequestBuilder.withCard, | |
| ); | |
| const paymentMethodApplication = loanApplicatioBuilder.build( | |
| loanApplicatioBuilder.withMoreInfo, | |
| loanApplicatioBuilder.withComponent('payment-method'), | |
| ); | |
| test('should show only card', () => { |