Skip to content

Instantly share code, notes, and snippets.

@daedalius
Created April 13, 2020 22:27
Show Gist options
  • Save daedalius/d18def9c09d2b1deb9dbef0819546fcc to your computer and use it in GitHub Desktop.
Save daedalius/d18def9c09d2b1deb9dbef0819546fcc to your computer and use it in GitHub Desktop.
Cypress + Storybook. #5
const selectors = {
innerInput: '.react-datepicker__input-container input',
};
it('renders text field.', () => {
cy.window().then((win) => {
ReactDOM.render(
<win.Datepicker />,
win.document.querySelector(rootToMountSelector)
);
});
cy
.get(selectors.innerInput)
.should('be.visible');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment