You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.1 KiB
55 lines
1.1 KiB
8 years ago
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
|
exports[`reducers paymentReducer should correctly getPayments 1`] = `
|
||
|
Object {
|
||
|
"payment": null,
|
||
|
"paymentLoading": true,
|
||
|
"payments": Array [],
|
||
7 years ago
|
"sendingPayment": false,
|
||
7 years ago
|
"showSuccessPayScreen": false,
|
||
8 years ago
|
}
|
||
|
`;
|
||
|
|
||
|
exports[`reducers paymentReducer should correctly paymentSuccessful 1`] = `
|
||
|
Object {
|
||
|
"payment": null,
|
||
|
"paymentLoading": false,
|
||
7 years ago
|
"payments": Array [],
|
||
7 years ago
|
"sendingPayment": false,
|
||
7 years ago
|
"showSuccessPayScreen": false,
|
||
8 years ago
|
}
|
||
|
`;
|
||
|
|
||
|
exports[`reducers paymentReducer should correctly receivePayments 1`] = `
|
||
|
Object {
|
||
|
"payment": null,
|
||
|
"paymentLoading": false,
|
||
|
"payments": Array [
|
||
|
1,
|
||
|
2,
|
||
|
],
|
||
7 years ago
|
"sendingPayment": false,
|
||
7 years ago
|
"showSuccessPayScreen": false,
|
||
8 years ago
|
}
|
||
|
`;
|
||
|
|
||
|
exports[`reducers paymentReducer should correctly sendPayment 1`] = `
|
||
|
Object {
|
||
|
"payment": "foo",
|
||
|
"paymentLoading": false,
|
||
|
"payments": Array [],
|
||
7 years ago
|
"sendingPayment": false,
|
||
7 years ago
|
"showSuccessPayScreen": false,
|
||
8 years ago
|
}
|
||
|
`;
|
||
|
|
||
|
exports[`reducers paymentReducer should handle initial state 1`] = `
|
||
|
Object {
|
||
|
"payment": null,
|
||
|
"paymentLoading": false,
|
||
|
"payments": Array [],
|
||
7 years ago
|
"sendingPayment": false,
|
||
7 years ago
|
"showSuccessPayScreen": false,
|
||
8 years ago
|
}
|
||
|
`;
|