mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
42 lines
636 B
Plaintext
42 lines
636 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`withTooltip tests does not render a tooltip when not specified 1`] = `
|
|
<body>
|
|
<div>
|
|
<div>
|
|
foobar
|
|
</div>
|
|
</div>
|
|
</body>
|
|
`;
|
|
|
|
exports[`withTooltip tests renders a tooltip when specified 1`] = `
|
|
<body>
|
|
<div>
|
|
<div>
|
|
foobar
|
|
</div>
|
|
</div>
|
|
</body>
|
|
`;
|
|
|
|
exports[`withTooltip tests renders a tooltip when specified via tooltip props 1`] = `
|
|
<body>
|
|
<div>
|
|
<div>
|
|
foobar
|
|
</div>
|
|
</div>
|
|
</body>
|
|
`;
|
|
|
|
exports[`withTooltip tests renders a tooltip when specified without id 1`] = `
|
|
<body>
|
|
<div>
|
|
<div>
|
|
foobar
|
|
</div>
|
|
</div>
|
|
</body>
|
|
`;
|