mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-08 21:18:14 -05:00
* INJIMOB-3246 Code coverage for Inji-Wallet repo increase above 5% Signed-off-by: Kaushik Gupta <kausgpt97@gmail.com> * INJIMOB-3246: added snapshot tests and coverage increased to +4% Signed-off-by: Kaushik Gupta <kausgpt97@gmail.com> * removed duplicated lines Signed-off-by: Kaushik Gupta <kausgpt97@gmail.com> * Added updateCredentialInformation tests Signed-off-by: Kaushik Gupta <kausgpt97@gmail.com> * added code rabbit changes Signed-off-by: Kaushik Gupta <kausgpt97@gmail.com> * removed platform-specific tests without mocking Signed-off-by: Kaushik Gupta <kausgpt97@gmail.com> * standardize mocks in VcItemContainerProfileImage tests Signed-off-by: Kaushik Gupta <kausgpt97@gmail.com> --------- Signed-off-by: Kaushik Gupta <kausgpt97@gmail.com>
56 lines
1.1 KiB
Plaintext
56 lines
1.1 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`EditableListItem Component should match snapshot with custom title color 1`] = `
|
|
[
|
|
"Contact Information",
|
|
"Edit your details",
|
|
"editLabel",
|
|
"editLabel",
|
|
]
|
|
`;
|
|
|
|
exports[`EditableListItem Component should match snapshot with default props 1`] = `
|
|
[
|
|
"Contact Information",
|
|
"Edit your details",
|
|
"editLabel",
|
|
"editLabel",
|
|
]
|
|
`;
|
|
|
|
exports[`EditableListItem Component should match snapshot with error state 1`] = `
|
|
[
|
|
"Contact Information",
|
|
"Edit your details",
|
|
"editLabel",
|
|
"Failed to update",
|
|
"editLabel",
|
|
]
|
|
`;
|
|
|
|
exports[`EditableListItem Component should match snapshot with progress indicator 1`] = `
|
|
[
|
|
"Contact Information",
|
|
"Edit your details",
|
|
"editLabel",
|
|
"editLabel",
|
|
]
|
|
`;
|
|
|
|
exports[`EditableListItem Component should match snapshot with single item 1`] = `
|
|
[
|
|
"Contact Information",
|
|
"Edit your details",
|
|
"editLabel",
|
|
]
|
|
`;
|
|
|
|
exports[`EditableListItem Component should match snapshot with success response 1`] = `
|
|
[
|
|
"Contact Information",
|
|
"Edit your details",
|
|
"editLabel",
|
|
"editLabel",
|
|
]
|
|
`;
|