aboutsummaryrefslogtreecommitdiff
path: root/test/browser.unit.html
diff options
context:
space:
mode:
authorMatthew Bergman <[email protected]>2013-01-08 09:35:00 -0800
committerMatthew Bergman <[email protected]>2013-01-08 09:35:00 -0800
commitfd79022a8cb6d0d3adc50e8af96a5e2ae93d8e53 (patch)
tree28c0bd9453cf4e6d273b97bfe2ce53cab11d3330 /test/browser.unit.html
parent1e4fcf794181b8d8c9286ee1890a903199f81847 (diff)
parent19d0e99ebec18bab6047bf944c07fc472fd9773a (diff)
downloadfaker-fd79022a8cb6d0d3adc50e8af96a5e2ae93d8e53.tar.xz
faker-fd79022a8cb6d0d3adc50e8af96a5e2ae93d8e53.zip
Merge pull request #37 from BryanDonovan/main
Refactored with 100% test coverage
Diffstat (limited to 'test/browser.unit.html')
-rw-r--r--test/browser.unit.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/browser.unit.html b/test/browser.unit.html
new file mode 100644
index 00000000..375f683c
--- /dev/null
+++ b/test/browser.unit.html
@@ -0,0 +1,28 @@
+<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 src="./support/sinon-1.5.2.js"></script>
+ <script>assert = chai.assert;</script>
+ <script>mocha.setup('bdd');</script>
+ <script src="all.functional.js"></script>
+ <script src="address.unit.js"></script>
+ <script src="company.unit.js"></script>
+ <script src="helpers.unit.js"></script>
+ <script src="internet.unit.js"></script>
+ <script src="lorem.unit.js"></script>
+ <script src="name.unit.js"></script>
+ <script src="phone_number.unit.js"></script>
+ <script>
+ mocha.run();
+ </script>
+</body>
+</html>
+