Skip to content

Commit

Permalink
test: add a test for clicking on material ui select (#10652)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgozman committed Dec 1, 2021
1 parent 5412480 commit 045cf1a
Show file tree
Hide file tree
Showing 5 changed files with 523 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tests/assets/mui.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<head>
<script src="./react/react@17.0.2.production.min.js"></script>
<script src="./react/react-dom@17.0.2.production.min.js"></script>
<script src="./react/material-ui@5.2.2.production.min.js"></script>
</head>
<body>
<div class='react-root'></div>
<script>
window.e = React.createElement;
window.reactRoot = document.querySelector('.react-root');
window.renderComponent = c => ReactDOM.render(c, window.reactRoot);
</script>
</body>
209 changes: 209 additions & 0 deletions tests/assets/react/material-ui@5.2.2.production.min.js

Large diffs are not rendered by default.

0 comments on commit 045cf1a

Please sign in to comment.