22 lines
528 B
HTML
22 lines
528 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Example Test Suite</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<style type="text/css">
|
||
|
ol {
|
||
|
display: block;
|
||
|
}
|
||
|
</style>
|
||
|
<script src="./node_modules/nodeunit/examples/browser/nodeunit.js"></script>
|
||
|
<script src="../dist/ethers-tests.js"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1 id="nodeunit-header">Example Test Suite</h1>
|
||
|
<script>
|
||
|
nodeunit.run(ethers);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|