aboutsummaryrefslogtreecommitdiffstats
path: root/test/scenario/TestContext.js
blob: 2081479e9d234f765209c6af78a8b83059c8080f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
//}