1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/technical-features/react-application-root/src/__snapshots__/react-application.test.tsx.snap
Janne Savolainen de3fc32706
Introduce competition for starting react application inside the Feature
Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
2023-03-31 08:39:30 +03:00

42 lines
755 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react-application renders 1`] = `
<body>
<div />
</body>
`;
exports[`react-application when children is registered and enabled renders 1`] = `
<body>
<div>
<div
data-some-children-test="true"
>
Some children
</div>
</div>
</body>
`;
exports[`react-application when children is registered and enabled when children is enabled renders 1`] = `
<body>
<div />
</body>
`;
exports[`react-application when children is registered and enabled when wrapper is registered renders 1`] = `
<body>
<div>
<div
data-some-wrapper-test="true"
>
<div
data-some-children-test="true"
>
Some children
</div>
</div>
</div>
</body>
`;