Index: Tools/GardeningServer/test/run-unit-tests.html |
diff --git a/Tools/GardeningServer/test/run-unit-tests.html b/Tools/GardeningServer/test/run-unit-tests.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..65ba1ffc4922c44aba17577633f51ab692247b51 |
--- /dev/null |
+++ b/Tools/GardeningServer/test/run-unit-tests.html |
@@ -0,0 +1,29 @@ |
+<!-- |
+Copyright 2014 The Chromium Authors. All rights reserved. |
+Use of this source code is governed by a BSD-style license that can be |
+found in the LICENSE file. |
+--> |
+ |
+<!DOCTYPE html> |
+<head> |
+<meta charset="utf-8"> |
+<link rel="stylesheet" href="../node_modules/mocha/mocha.css"> |
+<title>Sheriff-O-Matic Unit Tests</title> |
+</head> |
esprehn
2014/07/25 23:59:39
ditto
michaelpg
2014/07/28 20:35:04
why? this is a standalone page intended to be manu
|
+ |
+<body> |
+<link rel="import" href="dependencies.html"> |
+ |
+<script> |
ojan
2014/07/23 01:36:58
Hmmm...I'm not sure the order of imports + inline
michaelpg
2014/07/28 20:35:04
Good question. I've done some testing and attempte
|
+mocha.checkLeaks(); |
+mocha.setup('tdd'); |
+</script> |
+ |
+<link rel="import" href="unit-tests.html"> |
+ |
+<div id="mocha"></div> |
+ |
+<script> |
+mocha.run(); |
+</script> |
+</body> |