aboutsummaryrefslogtreecommitdiffstats
path: root/test/scenario/TestContext.js
diff options
context:
space:
mode:
authorAndres Ornelas2010-07-27 17:04:37 -0700
committerAndres Ornelas2010-07-27 17:04:37 -0700
commitef88eb9a71ee7666029c4fb5eb731ce2e986cecc (patch)
tree1152efda8f109523808ba0baf2256465ca0ba6c7 /test/scenario/TestContext.js
parente8b477f5b1f6fcca99ea54731e7c4f09ef17b0f7 (diff)
downloadangular.js-ef88eb9a71ee7666029c4fb5eb731ce2e986cecc.tar.bz2
refactoring done but Expect not working
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>');
}