aboutsummaryrefslogtreecommitdiffstats
path: root/test/scenario/RunnerSpec.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/RunnerSpec.js
parente8b477f5b1f6fcca99ea54731e7c4f09ef17b0f7 (diff)
downloadangular.js-ef88eb9a71ee7666029c4fb5eb731ce2e986cecc.tar.bz2
refactoring done but Expect not working
Diffstat (limited to 'test/scenario/RunnerSpec.js')
-rw-r--r--test/scenario/RunnerSpec.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/scenario/RunnerSpec.js b/test/scenario/RunnerSpec.js
index f5c152a5..2eb13f7f 100644
--- a/test/scenario/RunnerSpec.js
+++ b/test/scenario/RunnerSpec.js
@@ -1,7 +1,14 @@
describe('Runner', function() {
+ var Describe, It, BeforeEach, AfterEach, body;
+
beforeEach(function() {
setUpContext();
+ Describe = scenario.describe;
+ It = scenario.it;
+ BeforeEach = scenario.beforeEach;
+ AfterEach = scenario.afterEach;
+ body = _jQuery('<div></div>');
});
describe('describe', function() {