mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:21:15 +08:00
36 lines
877 B
JavaScript
36 lines
877 B
JavaScript
import React, { useState } from 'react';
|
|
import { styled } from '@storybook/theming';
|
|
|
|
const Block = styled.div({
|
|
display: 'inline-block',
|
|
height: 400,
|
|
width: 400,
|
|
background: 'hotpink',
|
|
});
|
|
|
|
export default {
|
|
title: 'Addons/Storyshots',
|
|
};
|
|
|
|
export const block = () => {
|
|
const [hover, setHover] = useState(false);
|
|
|
|
return (
|
|
<Block data-test-block onMouseEnter={() => setHover(true)} onMouseLeave={() => setHover(false)}>
|
|
{hover && 'I am hovered'}
|
|
</Block>
|
|
);
|
|
};
|
|
block.storyName = 'Block story';
|
|
|
|
block.parameters = {
|
|
async puppeteerTest(page) {
|
|
const element = await page.$('[data-test-block]');
|
|
await element.hover();
|
|
const textContent = await element.getProperty('textContent');
|
|
const text = await textContent.jsonValue();
|
|
// eslint-disable-next-line jest/no-standalone-expect
|
|
expect(text).toBe('I am hovered');
|
|
},
|
|
};
|