aboutsummaryrefslogtreecommitdiffstats
path: root/test/scenario/TestContext.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/scenario/TestContext.js')
-rw-r--r--test/scenario/TestContext.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/scenario/TestContext.js b/test/scenario/TestContext.js
new file mode 100644
index 00000000..2081479e
--- /dev/null
+++ b/test/scenario/TestContext.js
@@ -0,0 +1,20 @@
+//var scenario, runner, log, Describe, It, $scenario, body;
+//
+//function logger(text) {
+// return function(done){
+// log += text;
+// (done||noop)();
+// };
+//}
+//
+//function beforeEach() {
+// log = '';
+// scenario = {};
+// body = _jQuery('<div></div>');
+// runner = new angular.scenario.Runner(scenario, _jQuery);
+// Describe = scenario.describe;
+// BeforeEach = scenario.beforeEach;
+// AfterEach = scenario.afterEach;
+// It = scenario.it;
+// $scenario = scenario.$scenario;
+//}