diff options
| author | Bryan Donovan <[email protected]> | 2013-01-07 14:05:37 -0800 |
|---|---|---|
| committer | Bryan Donovan <[email protected]> | 2013-01-07 14:05:37 -0800 |
| commit | 2659968f341800a2e84c191a90d97325bbb80f53 (patch) | |
| tree | d722e5467f3d49d5ec4cf5efb1c0e7b1b72cb5c3 /test/browser.unit.html | |
| parent | e483b72d3f1cb805fede585a71fa1e48ec568f12 (diff) | |
| download | faker-2659968f341800a2e84c191a90d97325bbb80f53.tar.xz faker-2659968f341800a2e84c191a90d97325bbb80f53.zip | |
adding real browser tests
Diffstat (limited to 'test/browser.unit.html')
| -rw-r--r-- | test/browser.unit.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/browser.unit.html b/test/browser.unit.html new file mode 100644 index 00000000..cbf80e31 --- /dev/null +++ b/test/browser.unit.html @@ -0,0 +1,20 @@ +<html> +<head> + <meta charset="utf-8"> + <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="../Faker.js"></script> + <script src="./support/chai.js"></script> + <script>assert = chai.assert;</script> + <script>mocha.setup('bdd');</script> + <script src="all.browser.js"></script> + <script> + mocha.run(); + </script> +</body> +</html> + |
