feat(tests): add cypress

This commit is contained in:
moklick
2019-09-25 21:33:20 +02:00
parent f6513eff10
commit a6dbd8ebe1
50 changed files with 97906 additions and 11 deletions

28
examples/basic.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>react-flow example</title>
<style>
html, body {
margin: 0;
}
html, body, #root {
height: 100%;
}
.controls {
position: absolute;
bottom: 10px;
left: 10px;
z-index: 4;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="basic/scripts/index.js"></script>
</body>
</html>