test(user-interface-configuration): write initial tests (#1242)
* test(user-interface): add tests with playwright * test: refactor UI configuration tests --------- Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
This commit is contained in:
@@ -8,7 +8,10 @@ const CustomLogo = () => {
|
||||
const logoSvgData = config['logo.svgData'] as string;
|
||||
|
||||
return (
|
||||
<img src={`data:image/svg+xml;utf8,${encodeURIComponent(logoSvgData)}`} />
|
||||
<img
|
||||
data-test="custom-logo"
|
||||
src={`data:image/svg+xml;utf8,${encodeURIComponent(logoSvgData)}`}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user