Added sandbox test HTML file for debugging and testing.

This commit is contained in:
Richard Moore 2018-06-21 21:01:52 -04:00
parent 6abab3b974
commit 7d8abf4463
No known key found for this signature in database
GPG Key ID: 525F70A6FCABC295

21
tests/sandbox.html Normal file

@ -0,0 +1,21 @@
<html>
<body>
<div>
Load this HTML file to play with ethers in the console.
</div>
<!-- ethers.js -->
<script src="../dist/ethers.min.js"></script>
<!-- Load all the Locales -->
<script src="../dist/wordlist-it.js"></script>
<script src="../dist/wordlist-ja.js"></script>
<script src="../dist/wordlist-ko.js"></script>
<script src="../dist/wordlist-zh.js"></script>
<!-- Sometimes when debugging, we need to run common setup code -->
<script>
// Put setup code here
</script>
</body>
</html>