2
0
mirror of synced 2025-02-25 12:35:17 +00:00
ethers.js/tests/test.html

69 lines
2.1 KiB
HTML
Raw Normal View History

2017-02-27 01:51:27 -05:00
<!doctype html>
<html>
<head>
2017-10-22 17:47:17 -04:00
<title>Ethers Test Suite</title>
2017-02-27 01:51:27 -05:00
<meta charset="UTF-8">
2017-10-22 17:47:17 -04:00
<link href="../node_modules/mocha/mocha.css" rel="stylesheet" />
2017-02-27 01:51:27 -05:00
<style type="text/css">
</style>
</head>
<body>
2017-10-22 17:47:17 -04:00
<div id="mocha"></div>
<script src="../node_modules/mocha/mocha.js"></script>
2017-11-09 03:14:48 -05:00
2017-10-22 17:47:17 -04:00
<!--
Shim for PhantomJS: Promise
See: https://github.com/stefanpenner/es6-promise
-->
<script src="./dist/es6-promise.auto.js"></script>
<!--
Shim for String.prototype.normalize
See: https://github.com/walling/unorm
-->
<script src="./dist/unorm.js"></script>
2017-10-22 17:47:17 -04:00
<!--
2018-06-03 02:42:53 -04:00
Shims for PhantomJS
2017-10-22 17:47:17 -04:00
-->
<script type="text/javascript">
2018-06-03 02:42:53 -04:00
// ArrayBuffer.isView
2017-10-22 17:47:17 -04:00
if (!ArrayBuffer.isView) {
ArrayBuffer.isView = function(obj) {
// @TODO: This should probably check various instanceof aswell
return !!(obj.buffer);
}
}
2018-06-03 02:42:53 -04:00
// nextTick
if (!window.nextTick) {
window.nextTick = function (callback) { setTimeout(callback, 0); }
}
2017-10-22 17:47:17 -04:00
// https://github.com/nathanboktae/mocha-phantomjs-core#usage
if (typeof(initMochaPhantomJS) === 'function') {
initMochaPhantomJS();
}
2017-10-22 17:47:17 -04:00
</script>
<!-- Inject the mocha describe and it functions -->
<script type="text/javascript">mocha.setup('bdd')</script>
<!-- Load the browser dist ethers package -->
<script type="text/javascript" src="../dist/ethers.min.js"></script>
2017-10-22 17:47:17 -04:00
<!-- Our test cases; compiled by browserify -->
<script src="./dist/tests.js" type="text/javascript"></script>
<!-- Run the test cases! -->
<script type="text/javascript">
2018-06-03 02:42:53 -04:00
// Use this to focus on specific test cases
2018-07-12 20:14:04 -04:00
//mocha.grep(new RegExp('Test Transaction Signing and Parsing parses and signs transaction - random-999')).run();
2017-10-22 17:47:17 -04:00
mocha.run();
2017-02-27 01:51:27 -05:00
</script>
</body>
</html>