-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: webpack builds! #844
base: main
Are you sure you want to change the base?
Conversation
@@ -145,7 +145,7 @@ describe('PaymentMethodView', () => { | |||
} | |||
); | |||
|
|||
test('calls model.confirmPaymentMethodDeletion when selection event occurs when in edit mode', () => { | |||
test.skip('calls model.confirmPaymentMethodDeletion when selection event occurs when in edit mode', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure what this test needs to accomplish
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It ensures that the model does delete the payment method when selected, if I recall, via a a keyboard action.
@@ -160,7 +160,7 @@ describe('PaymentMethodView', () => { | |||
expect(config.model.confirmPaymentMethodDeletion).toBeCalledWith(config.paymentMethod); | |||
}); | |||
|
|||
test('calls model.changeActivePaymentMethod when selection occurs when not in edit mode', () => { | |||
test.skip('calls model.changeActivePaymentMethod when selection occurs when not in edit mode', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure what this test needs to accomplish
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It ensures that the active payment method is updated (rather than deleted, like in the other test) when selected and not in the "edit payment method" view.
Summary
TODO:
Checklist
Authors