ethers.js/tests/test.html

27 lines
634 B
HTML
Raw Normal View History

2017-02-27 09:51:27 +03:00
<!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>
2017-02-27 09:51:27 +03:00
</head>
<body>
<h1 id="nodeunit-header">Example Test Suite</h1>
<script>
//nodeunit.run(tests);
nodeunit.run({
single: tests['providers']
});
/*
*/
2017-02-27 09:51:27 +03:00
</script>
</body>
</html>