ethers.js/tests/test.html

27 lines
634 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(tests);
nodeunit.run({
single: tests['providers']
});
/*
*/
</script>
</body>
</html>