UNPKG

pageviews

Version:

A lightweight JavaScript client library for the Wikimedia Pageviews API for Wikipedia and various of its sister projects for Node.js and the browser.

21 lines (20 loc) 569 B
<!DOCTYPE html> <html> <head> <title>Mocha Tests</title> <link rel="stylesheet" href="../node_modules/mocha/mocha.css"> </head> <body> <div id="mocha"></div> <script src="../node_modules/mocha/mocha.js"></script> <script src="../node_modules/chai/chai.js"></script> <script>mocha.setup('bdd')</script> <!-- load code you want to test here --> <script src="../pageviews.js"></script> <!-- load your test files here --> <script src="pageviewsTest.js"></script> <script> mocha.run(); </script> </body> </html>