aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAndres Ornelas2010-06-22 17:15:14 -0700
committerAndres Ornelas2010-06-22 17:15:14 -0700
commit70c3dc81665191cd065a5303e5e26639a0023a73 (patch)
tree72ba1be4006bc5191bd852284db026bcf2e702d9 /test
parentb129a1094e6b42ed82c3ccecc2f40daaa0a6cb6a (diff)
downloadangular.js-70c3dc81665191cd065a5303e5e26639a0023a73.tar.bz2
expose e2e test results
Diffstat (limited to 'test')
-rw-r--r--test/scenario/RunnerSpec.js34
1 files changed, 31 insertions, 3 deletions
diff --git a/test/scenario/RunnerSpec.js b/test/scenario/RunnerSpec.js
index ca6e8eb2..5e05cd00 100644
--- a/test/scenario/RunnerSpec.js
+++ b/test/scenario/RunnerSpec.js
@@ -148,8 +148,14 @@ describe('Runner', function(){
it('should handle exceptions in a step', function(){
$scenario.specs['spec'] = {
steps: [
+ {name: 'first step', fn: function(done) {
+ done();
+ }},
{name:'error', fn:function(done) {
throw "MyError";
+ }},
+ {name: 'should not execute', fn: function(done) {
+ done();
}}
]
};
@@ -160,12 +166,17 @@ describe('Runner', function(){
expect(spec.result.failed).toEqual(true);
expect(spec.result.finished).toEqual(true);
expect(spec.result.error).toEqual("MyError");
+ expect(scenario.$testrun.results).toEqual([{
+ name: 'spec',
+ passed: false,
+ error: 'MyError',
+ steps: ['first step', 'error']}]);
});
});
describe('run', function(){
var next;
- it('should execute all specs', function(){
+ beforeEach(function() {
Describe('d1', function(){
It('it1', function(){ $scenario.addStep('s1', logger('s1,')); });
It('it2', function(){
@@ -177,13 +188,30 @@ describe('Runner', function(){
It('it3', function(){ $scenario.addStep('s3', logger('s3,')); });
It('it4', function(){ $scenario.addStep('s4', logger('s4,')); });
});
-
+ });
+ it('should execute all specs', function(){
$scenario.run(body);
expect(log).toEqual('s1,s2,');
next();
expect(log).toEqual('s1,s2,s3,s4,');
-
+ });
+ it('should publish done state and results as tests are run', function() {
+ expect(scenario.$testrun.done).toBeFalsy();
+ expect(scenario.$testrun.results).toEqual([]);
+ $scenario.run(body);
+ expect(scenario.$testrun.done).toBeFalsy();
+ expect(scenario.$testrun.results).toEqual([
+ {name: 'd1: it it1', passed: true, steps: ['s1']}
+ ]);
+ next();
+ expect(scenario.$testrun.done).toBeTruthy();
+ expect(scenario.$testrun.results).toEqual([
+ {name: 'd1: it it1', passed: true, steps: ['s1']},
+ {name: 'd1: it it2', passed: true, steps: ['s2', 's2.2']},
+ {name: 'd2: it it3', passed: true, steps: ['s3']},
+ {name: 'd2: it it4', passed: true, steps: ['s4']}
+ ]);
});
});