2017-02-27 09:51:27 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2017-10-23 00:47:17 +03:00
|
|
|
<title>Ethers Test Suite</title>
|
2017-02-27 09:51:27 +03:00
|
|
|
<meta charset="UTF-8">
|
2017-10-23 00:47:17 +03:00
|
|
|
<link href="../node_modules/mocha/mocha.css" rel="stylesheet" />
|
2017-02-27 09:51:27 +03:00
|
|
|
<style type="text/css">
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2017-10-23 00:47:17 +03:00
|
|
|
<div id="mocha"></div>
|
|
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
2018-11-09 02:25:16 +03:00
|
|
|
<script src="../dist/shims.js"></script>
|
2018-06-03 09:42:53 +03:00
|
|
|
|
2018-08-03 00:10:38 +03:00
|
|
|
<!-- Inject the mocha describe and it functions -->
|
|
|
|
<script type="text/javascript">
|
2017-10-23 00:47:17 +03:00
|
|
|
// https://github.com/nathanboktae/mocha-phantomjs-core#usage
|
|
|
|
if (typeof(initMochaPhantomJS) === 'function') {
|
|
|
|
initMochaPhantomJS();
|
|
|
|
}
|
2018-03-05 03:31:09 +03:00
|
|
|
|
2018-08-03 00:10:38 +03:00
|
|
|
// Inject the mocha describe and it functions
|
|
|
|
mocha.setup({ ui: 'bdd' });
|
2017-10-23 00:47:17 +03:00
|
|
|
</script>
|
|
|
|
|
2018-03-05 03:31:09 +03:00
|
|
|
<!-- Load the browser dist ethers package -->
|
2018-06-14 09:25:56 +03:00
|
|
|
<script type="text/javascript" src="../dist/ethers.min.js"></script>
|
2018-10-04 03:22:59 +03:00
|
|
|
<script type="text/javascript" src="../dist/wordlist-es.js"></script>
|
|
|
|
<script type="text/javascript" src="../dist/wordlist-fr.js"></script>
|
2018-07-16 07:19:50 +03:00
|
|
|
<script type="text/javascript" src="../dist/wordlist-it.js"></script>
|
|
|
|
<script type="text/javascript" src="../dist/wordlist-ja.js"></script>
|
|
|
|
<script type="text/javascript" src="../dist/wordlist-ko.js"></script>
|
|
|
|
<script type="text/javascript" src="../dist/wordlist-zh.js"></script>
|
2018-03-05 03:31:09 +03:00
|
|
|
|
2017-10-23 00:47:17 +03: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-08-03 00:10:38 +03:00
|
|
|
mocha.reporter(tests.reporter);
|
|
|
|
|
2018-06-03 09:42:53 +03:00
|
|
|
// Use this to focus on specific test cases
|
2018-08-03 00:10:38 +03:00
|
|
|
//mocha.grep(new RegExp('easyseed')).run();
|
2017-10-23 00:47:17 +03:00
|
|
|
mocha.run();
|
2017-02-27 09:51:27 +03:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|