Skip to content

Commit

Permalink
Start to sketch selection tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrosen committed Jul 29, 2020
1 parent 9a080fb commit d841661
Show file tree
Hide file tree
Showing 2 changed files with 4,251 additions and 0 deletions.
30 changes: 30 additions & 0 deletions tests/selection.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Selection Tests</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<div id="paper"></div>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script class="mocha-init">
mocha.setup({ui: 'bdd', globals: ['__VUE_DEVTOOLS_TOAST__']});
mocha.checkLeaks();
</script>

<script src="visual/selection.test.js"></script>

<script src="../node_modules/@tarp/require/require.min.js"></script>
<script>
Tarp.require({main: "../index.js"}).then(function (response) {
window.abcjs = response;
mocha.run();
});
</script>

</body>
</html>
Loading

0 comments on commit d841661

Please sign in to comment.