import React from 'react';
import { cy } from '@itsjonq/cyan';
import { BaseControls } from '../BaseControls';
describe('BaseControls', function () {
test('should render', function () {
cy.render(React.createElement(BaseControls, null));
expect(cy.get('div').exists()).toBeTruthy();
});
});