mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 21:48:04 -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>
69 lines
1.2 KiB
Plaintext
69 lines
1.2 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`ErrorMessageOverlay Component should match snapshot with error 1`] = `
|
|
[
|
|
"network.title",
|
|
"network.message",
|
|
]
|
|
`;
|
|
|
|
exports[`ErrorMessageOverlay Component should match snapshot with testID 1`] = `
|
|
[
|
|
"network.title",
|
|
"network.message",
|
|
]
|
|
`;
|
|
|
|
exports[`MessageOverlay Component should match snapshot with button 1`] = `
|
|
[
|
|
"Test Title",
|
|
"Test Message",
|
|
]
|
|
`;
|
|
|
|
exports[`MessageOverlay Component should match snapshot with custom children 1`] = `
|
|
[
|
|
"Test Title",
|
|
"Test Message",
|
|
<Text>
|
|
Custom Content
|
|
</Text>,
|
|
]
|
|
`;
|
|
|
|
exports[`MessageOverlay Component should match snapshot with custom minHeight 1`] = `
|
|
[
|
|
"Test Title",
|
|
"Test Message",
|
|
]
|
|
`;
|
|
|
|
exports[`MessageOverlay Component should match snapshot with hint text 1`] = `
|
|
[
|
|
"Test Title",
|
|
"Test Message",
|
|
"This is a hint",
|
|
]
|
|
`;
|
|
|
|
exports[`MessageOverlay Component should match snapshot with numeric progress 1`] = `
|
|
[
|
|
"Test Title",
|
|
"Test Message",
|
|
]
|
|
`;
|
|
|
|
exports[`MessageOverlay Component should match snapshot with progress indicator 1`] = `
|
|
[
|
|
"Test Title",
|
|
"Test Message",
|
|
]
|
|
`;
|
|
|
|
exports[`MessageOverlay Component should match snapshot with title and message 1`] = `
|
|
[
|
|
"Test Title",
|
|
"Test Message",
|
|
]
|
|
`;
|