UNPKG

qunit-mocha-ui

Version:

A QUnit Interface for Mocha that supports all QUnit's assertion types.

25 lines 664 B
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Browserified test</title> <script src="../node_modules/mocha/mocha.js"></script> <script src="../qunit-mocha-ui-browser.js"></script> <script> mocha.setup({ui:"qunit-mocha-ui"}); </script> <link rel="stylesheet" type="text/css" href="../node_modules/mocha/mocha.css"> </head> <body> <div id="mocha"></div> <script src="qunit-test.js"></script> <script> suite("On page test!"); test("An awesome QUnit style test", 2, function (){ ok(true); equal(1, parseInt("1")); }); mocha.run(); </script> </body> </html>