import React from 'react';
import { render } from '@testing-library/react';
import { testComponent } from 'lib/test-utils/common';
import { SidebarPortal } from '../sidebarPortal';

testComponent(SidebarPortal, {}, 'SuiteSidebarPortal');

describe('SidebarPortal', () => {
    test('ref', () => {
        const ref = React.createRef<HTMLDivElement>();
        render(<SidebarPortal ref={ref} />);
        expect(ref.current).toHaveClass('SuiteSidebarPortal');
    });
});
