Files
inji-wallet/components/__snapshots__/DualMessageOverlay.test.tsx.snap
jaswanthkumartw edefef6c5d Injimob-3651: update the new branding changes (#2154)
* [INJIMOB-3622]: add the new branding changes

Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>

* [INJIMOB-3651]: update the new branding changes

Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>

* [INJIMOB-3651]: update the new snapshots

Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>

* [INJIMOB-3651]: update the changes mentioned deskcheck

Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>

---------

Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>
Signed-off-by: jaswanthkumartw <jaswanthkumar.p@thoughtworks.com>
2025-12-01 15:03:41 +05:30

171 lines
3.1 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`DualMessageOverlay Component should match snapshot with both buttons 1`] = `
[
"Confirm Action",
"Are you sure you want to proceed?",
<Text
style={
[
{
"color": "#000000",
"fontSize": 16,
"lineHeight": 18,
},
{
"fontFamily": "Montserrat_700Bold",
"fontSize": 15,
"justifyContent": "center",
},
{
"color": "#FFFFFF",
},
{
"textAlign": "left",
},
null,
null,
{
"paddingLeft": 0,
},
]
}
>
tryAgain
</Text>,
<Text
style={
[
{
"color": "#000000",
"fontSize": 16,
"lineHeight": 18,
},
{
"fontFamily": "Montserrat_700Bold",
"fontSize": 15,
"justifyContent": "center",
},
{
"color": "#FFFFFF",
},
{
"textAlign": "left",
},
null,
null,
{
"paddingLeft": 0,
},
]
}
>
ignore
</Text>,
]
`;
exports[`DualMessageOverlay Component should match snapshot with children 1`] = `
[
"Confirm Action",
"Are you sure you want to proceed?",
<Text>
Custom content here
</Text>,
]
`;
exports[`DualMessageOverlay Component should match snapshot with custom height 1`] = `
[
"Confirm Action",
"Are you sure you want to proceed?",
]
`;
exports[`DualMessageOverlay Component should match snapshot with hint text 1`] = `
[
"Confirm Action",
"Are you sure you want to proceed?",
"Additional information",
]
`;
exports[`DualMessageOverlay Component should match snapshot with only ignore button 1`] = `
[
"Confirm Action",
"Are you sure you want to proceed?",
<Text
style={
[
{
"color": "#000000",
"fontSize": 16,
"lineHeight": 18,
},
{
"fontFamily": "Montserrat_700Bold",
"fontSize": 15,
"justifyContent": "center",
},
{
"color": "#FFFFFF",
},
{
"textAlign": "left",
},
null,
null,
{
"paddingLeft": 0,
},
]
}
>
ignore
</Text>,
]
`;
exports[`DualMessageOverlay Component should match snapshot with only try again button 1`] = `
[
"Confirm Action",
"Are you sure you want to proceed?",
<Text
style={
[
{
"color": "#000000",
"fontSize": 16,
"lineHeight": 18,
},
{
"fontFamily": "Montserrat_700Bold",
"fontSize": 15,
"justifyContent": "center",
},
{
"color": "#FFFFFF",
},
{
"textAlign": "left",
},
null,
null,
{
"paddingLeft": 0,
},
]
}
>
tryAgain
</Text>,
]
`;
exports[`DualMessageOverlay Component should match snapshot with title and message 1`] = `
[
"Confirm Action",
"Are you sure you want to proceed?",
]
`;