fbredius/storybook

View on GitHub
examples/html-kitchen-sink/stories/addon-a11y.stories.js

Summary

Maintainability
A
0 mins
Test Coverage
import global from 'global';

const { document, setTimeout } = global;
const text = 'Testing the a11y addon';

export default {
  title: 'Addons/a11y',
  parameters: {
    options: { selectedPanel: 'storybook/a11y/panel' },
  },
};

export const Default = () => `<button></button>`;
export const Label = () => `<button>${text}</button>`;
export const Disabled = () => `<button disabled>${text}</button>`;
export const Story4 = () =>
  `<button style="color: black; background-color: brown;">${text}</button>`;
Story4.storyName = 'Invalid contrast';

export const Story5 = () => {
  const div = document.createElement('div');
  setTimeout(() => {
    div.innerHTML = `<button>This button has a delayed render of 1s</button>`;
  }, 1000);
  return div;
};
Story5.storyName = 'Delayed render';