fix(aio): upgrade to zone.js 0.7.8 (#15099)
This new version supports empty jasmine it clauses.
This commit is contained in:
parent
6559425b07
commit
893652a813
|
@ -39,7 +39,7 @@
|
|||
"core-js": "^2.4.1",
|
||||
"rxjs": "^5.1.0",
|
||||
"ts-helpers": "^1.1.1",
|
||||
"zone.js": "^0.7.6"
|
||||
"zone.js": "0.7.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular/cli": "^1.0.0-rc.0",
|
||||
|
|
|
@ -73,9 +73,7 @@ describe('NavigationService', () => {
|
|||
});
|
||||
|
||||
|
||||
it('should do WHAT(?) if the request fails', () => {
|
||||
console.warn('PENDING: NavigationService navigationViews should do WHAT(?) if the request fails');
|
||||
});
|
||||
it('should do WHAT(?) if the request fails');
|
||||
});
|
||||
|
||||
describe('selectedNodes', () => {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { ReflectiveInjector, NgZone } from '@angular/core';
|
||||
import { SearchService } from './search.service';
|
||||
|
||||
xdescribe('SearchService', () => {
|
||||
describe('SearchService', () => {
|
||||
|
||||
let injector: ReflectiveInjector;
|
||||
|
||||
|
@ -13,12 +13,12 @@ xdescribe('SearchService', () => {
|
|||
});
|
||||
|
||||
describe('loadIndex', () => {
|
||||
it('should send a "load-index" message to the worker', () => {});
|
||||
it('should connect the `ready` property to the response to the "load-index" message', () => {});
|
||||
it('should send a "load-index" message to the worker');
|
||||
it('should connect the `ready` property to the response to the "load-index" message');
|
||||
});
|
||||
|
||||
describe('search', () => {
|
||||
it('should send a "query-index" message to the worker', () => {});
|
||||
it('should push the response to the `searchResults` observable', () => {});
|
||||
it('should send a "query-index" message to the worker');
|
||||
it('should push the response to the `searchResults` observable');
|
||||
});
|
||||
});
|
||||
|
|
|
@ -6835,6 +6835,10 @@ zip-stream@~0.6.0:
|
|||
lodash "~3.10.1"
|
||||
readable-stream "~1.0.26"
|
||||
|
||||
zone.js@^0.7.2, zone.js@^0.7.6:
|
||||
zone.js@0.7.8:
|
||||
version "0.7.8"
|
||||
resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.7.8.tgz#4f3fe8834d44597f2639053a0fa438df34fffded"
|
||||
|
||||
zone.js@^0.7.2:
|
||||
version "0.7.7"
|
||||
resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.7.7.tgz#0d7b7ae7f68012d03438b8a18f5763441bbf9620"
|
||||
|
|
Loading…
Reference in New Issue