| Index: third_party/pkg/angular/test/core/zone_spec.dart
|
| ===================================================================
|
| --- third_party/pkg/angular/test/core/zone_spec.dart (revision 33054)
|
| +++ third_party/pkg/angular/test/core/zone_spec.dart (working copy)
|
| @@ -46,23 +46,6 @@
|
| })));
|
|
|
|
|
| - it('should allow executing code outside the zone', inject(() {
|
| - var zone = new NgZone();
|
| - var outerZone = Zone.current;
|
| - var ngZone;
|
| - var outsideZone;
|
| - zone.run(() {
|
| - ngZone = Zone.current;
|
| - zone.runOutsideAngular(() {
|
| - outsideZone = Zone.current;
|
| - });
|
| - });
|
| -
|
| - expect(outsideZone).toEqual(outerZone);
|
| - expect(ngZone.parent).toEqual((outerZone));
|
| - }));
|
| -
|
| -
|
| it('should rethrow exceptions from the onTurnDone and call onError when the zone is sync', () {
|
| zone.onTurnDone = () {
|
| throw ["fromOnTurnDone"];
|
|
|