import FixtureSet from '../../FixtureSet'; import TestCase from '../../TestCase'; const React = window.React; function onButtonClick() { window.alert(`This shouldn't have happened!`); } export default class ButtonTestCases extends React.Component { render() { return (
  • Click on the disabled button
  • Nothing should happen
  • Click on the disabled button, which contains a span
  • Nothing should happen
    ); } }