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.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/scenario/TestContext.js b/test/scenario/TestContext.js
index 7a7b41e4..ebb40b95 100644
--- a/test/scenario/TestContext.js
+++ b/test/scenario/TestContext.js
@@ -1,4 +1,4 @@
-var scenario, runner, log, $scenario, Describe, It, body;
+var scenario, runner, log, $scenario;
function logger(text) {
return function(done){
@@ -11,10 +11,5 @@ function setUpContext() {
scenario = {};
runner = new angular.scenario.Runner(scenario, _jQuery);
$scenario = scenario.$scenario;
- Describe = scenario.describe;
- BeforeEach = scenario.beforeEach;
- AfterEach = scenario.afterEach;
- It = scenario.it;
log = '';
- body = _jQuery('<div></div>');
}