import * as PropTypes from 'prop-types'; import * as React from 'react'; import { mount } from 'enzyme'; import Layout from '../Layout'; import MainSidebar from '../MainSidebar'; test('Layout notified when collapsed value changes', () => { let receivedVal = null; interface LayoutFakeState { collapsed: boolean; }; class LayoutFake extends React.Component<{}, LayoutFakeState> { constructor(props) { super(props); this.state = { collapsed: true, }; } static propTypes = { children: PropTypes.node, } static childContextTypes = Layout.childContextTypes; getChildContext() { return { $adminlte_layout: { setMainSidebarCollapsed: (val) => receivedVal = val, }, }; } render() { return