Skip to content

Commit 64369af

Browse files
authored
Fix flaky tests & allow use with Firebase v6 (#2065)
* chore(): Remove timing out app deletes * chore(): Bump Firebase to allow 6.0
1 parent 454eac3 commit 64369af

File tree

5 files changed

+160
-58
lines changed

5 files changed

+160
-58
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"@angular/core": ">=6.0.0 <8",
3636
"@angular/platform-browser": ">=6.0.0 <8",
3737
"@angular/platform-browser-dynamic": ">=6.0.0 <8",
38-
"firebase": "^5.5.0",
38+
"firebase": ">= 5.5.0 <7",
3939
"rxjs": "^6.0.0",
4040
"ws": "^3.3.2",
4141
"xhr2": "^0.1.4",

src/firestore/collection/collection.spec.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ describe('AngularFirestoreCollection', () => {
3030
TestBed.configureTestingModule({
3131
imports: [
3232
AngularFireModule.initializeApp(COMMON_CONFIG),
33-
AngularFirestoreModule.enablePersistence()
33+
AngularFirestoreModule.enablePersistence({synchronizeTabs: true})
3434
]
3535
});
3636
inject([FirebaseApp, AngularFirestore], (_app: FirebaseApp, _afs: AngularFirestore) => {
@@ -39,8 +39,8 @@ describe('AngularFirestoreCollection', () => {
3939
})();
4040
});
4141

42-
afterEach(async (done) => {
43-
await app.delete();
42+
afterEach(done => {
43+
app.delete();
4444
done();
4545
});
4646

src/firestore/document/document.spec.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('AngularFirestoreDocument', () => {
1919
TestBed.configureTestingModule({
2020
imports: [
2121
AngularFireModule.initializeApp(COMMON_CONFIG),
22-
AngularFirestoreModule.enablePersistence()
22+
AngularFirestoreModule.enablePersistence({synchronizeTabs: true})
2323
]
2424
});
2525
inject([FirebaseApp, AngularFirestore], (_app: FirebaseApp, _afs: AngularFirestore) => {
@@ -28,8 +28,8 @@ describe('AngularFirestoreDocument', () => {
2828
})();
2929
});
3030

31-
afterEach(async (done) => {
32-
await app.delete();
31+
afterEach(done => {
32+
app.delete();
3333
done();
3434
});
3535

src/firestore/firestore.spec.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('AngularFirestore', () => {
2323
TestBed.configureTestingModule({
2424
imports: [
2525
AngularFireModule.initializeApp(COMMON_CONFIG),
26-
AngularFirestoreModule.enablePersistence({experimentalTabSynchronization: true})
26+
AngularFirestoreModule.enablePersistence({synchronizeTabs: true})
2727
]
2828
});
2929
inject([FirebaseApp, AngularFirestore], (_app: FirebaseApp, _afs: AngularFirestore) => {
@@ -116,7 +116,8 @@ describe('AngularFirestore with different app', () => {
116116
});
117117

118118
afterEach(done => {
119-
app.delete().then(done, done.fail);
119+
app.delete();
120+
done();
120121
});
121122

122123
describe('<constructor>', () => {
@@ -155,6 +156,11 @@ describe('AngularFirestore without persistance', () => {
155156
})();
156157
});
157158

159+
afterEach(done => {
160+
app.delete();
161+
done();
162+
});
163+
158164
it('should not enable persistence', (done) => {
159165
afs.persistenceEnabled$.subscribe(isEnabled => {
160166
expect(isEnabled).toBe(false);

yarn.lock

+145-49
Original file line numberDiff line numberDiff line change
@@ -69,63 +69,64 @@
6969
tslib "^1.9.0"
7070
xhr2 "^0.1.4"
7171

72-
"@firebase/app-types@0.3.10":
73-
version "0.3.10"
74-
resolved "https://registry.yarnpkg.com/@firebase/app-types/-/app-types-0.3.10.tgz#8f6d24d80bf833622b53ed26eaa04cfa9dd0f2f3"
75-
integrity sha512-l+5BJtSQopalBXiY/YuSaB9KF9PnDj37FLV0Sx3qJjh5B3IthCuZbPc1Vpbbbee/QZgudl0G212BBsUMGHP+fQ==
72+
"@firebase/app-types@0.4.0":
73+
version "0.4.0"
74+
resolved "https://registry.yarnpkg.com/@firebase/app-types/-/app-types-0.4.0.tgz#bb2c651f3b275fef549050cff28af752839c75c0"
75+
integrity sha512-8erNMHc0V26gA6Nj4W9laVrQrXHsj9K2TEM7eL2IQogGSHLL4vet3UNekYfcGQ2cjfvwUjMzd+BNS/8S7GnfiA==
7676

77-
"@firebase/app@0.3.17":
78-
version "0.3.17"
79-
resolved "https://registry.yarnpkg.com/@firebase/app/-/app-0.3.17.tgz#491dc3bc1a2837bbb4869161cc9852cfc04da891"
80-
integrity sha512-/8lDeeIxgdCIMffrfBPQ3bcdSkF8bx4KCp8pKMPOG/HYKoeM8I9eP4zlzxL5ABzRjvcdhK9KOYOn0jRrNrGD9g==
77+
"@firebase/app@0.4.0":
78+
version "0.4.0"
79+
resolved "https://registry.yarnpkg.com/@firebase/app/-/app-0.4.0.tgz#4f2e262ef258c351f3be6d41638b3eca43792f8a"
80+
integrity sha512-Q6fANJhL67qAjcha2iTpC+yCKbSkaoToo9MFDFY3NS2cr/6toNQms04pHKgSU4OylSgvU9B9JKwQfQeTkKz2fg==
8181
dependencies:
82-
"@firebase/app-types" "0.3.10"
82+
"@firebase/app-types" "0.4.0"
8383
"@firebase/util" "0.2.14"
8484
dom-storage "2.1.0"
8585
tslib "1.9.3"
8686
xmlhttprequest "1.8.0"
8787

88-
"@firebase/auth-types@0.6.1":
89-
version "0.6.1"
90-
resolved "https://registry.yarnpkg.com/@firebase/auth-types/-/auth-types-0.6.1.tgz#9b60142e3a4adc1db09c037d068ab98cd54c10a8"
91-
integrity sha512-uciPeIQJC1NZDhI5+BWbyqi70YXIjT3jm03sYtIgkPt2sr3n8sq1RpnoTMYfAJkQ0QlgLaBkeM/huMx06eBoXQ==
88+
"@firebase/auth-types@0.7.0":
89+
version "0.7.0"
90+
resolved "https://registry.yarnpkg.com/@firebase/auth-types/-/auth-types-0.7.0.tgz#8aac4b9c04aff61362827c35b5ad36db16a837ba"
91+
integrity sha512-QEG9azYwssGWcb4NaKFHe3Piez0SG46nRlu76HM4/ob0sjjNpNTY1Z5C3IoeJYknp2kMzuQi0TTW8tjEgkUAUA==
9292

93-
"@firebase/auth@0.10.2":
94-
version "0.10.2"
95-
resolved "https://registry.yarnpkg.com/@firebase/auth/-/auth-0.10.2.tgz#ef7a34f4667445ebaf4972622141c8fa4dffb961"
96-
integrity sha512-+S8RZcHhhat2xrW/RGOcSZO8pv0qHveaw09Bq/gXhZyJfN86UeiMc3sv4YMo1Hu7fRRorNteijpmlH522eI0AA==
93+
"@firebase/auth@0.11.1":
94+
version "0.11.1"
95+
resolved "https://registry.yarnpkg.com/@firebase/auth/-/auth-0.11.1.tgz#842cfd97b2c9d5c48e46fd9936f8fa9622717c29"
96+
integrity sha512-TxFeWqrtdELyzUYBDWF/J49JAxF3W0O77PvT42RoZm8C7nrls0LUAQoPjdFNjaQ+5o/MjHDnd9YMqwDAD01Oqw==
9797
dependencies:
98-
"@firebase/auth-types" "0.6.1"
98+
"@firebase/auth-types" "0.7.0"
9999

100-
"@firebase/database-types@0.3.11":
101-
version "0.3.11"
102-
resolved "https://registry.yarnpkg.com/@firebase/database-types/-/database-types-0.3.11.tgz#6bfcaca8e14e7d6bb67d723f0c2d7febbeefa054"
103-
integrity sha512-iRAZzs7Zlmmvh7r0XlR1MAO6I6bm1HjW9m1ytfJ6E/8+zItHnbVH4iiVVkC39r1wMGrtPMz8FiIUWoaasPF5dA==
100+
"@firebase/database-types@0.4.0":
101+
version "0.4.0"
102+
resolved "https://registry.yarnpkg.com/@firebase/database-types/-/database-types-0.4.0.tgz#71a711a3f666fac905422e130731930e2bcca582"
103+
integrity sha512-2piRYW7t+2s/P1NPpcI/3+8Y5l2WnJhm9KACoXW5zmoAPlya8R1aEaR2dNHLNePTMHdg04miEDD9fEz4xUqzZA==
104104

105-
"@firebase/database@0.3.20":
106-
version "0.3.20"
107-
resolved "https://registry.yarnpkg.com/@firebase/database/-/database-0.3.20.tgz#6851d8ef3229aeb7bcbe5e851434672abae43ee4"
108-
integrity sha512-fZHRIlRQlND/UrzI1beUTRKfktjMvMEiUOar6ylFZqOj2KNVO4CrF95UGqRl0HBGhZzlBKzaDYAcJze2D6C4+Q==
105+
"@firebase/database@0.4.0":
106+
version "0.4.0"
107+
resolved "https://registry.yarnpkg.com/@firebase/database/-/database-0.4.0.tgz#a72bac498f1d593fafee739982f01ac49fa7be59"
108+
integrity sha512-KbcepR1QKJshgrr9EG2FqiThyWBfHflpHlAsrQBsUCNnxQQcU+AMIWCz3YauHAR6S68iBplJNYLzShpwsrBFCw==
109109
dependencies:
110-
"@firebase/database-types" "0.3.11"
110+
"@firebase/database-types" "0.4.0"
111111
"@firebase/logger" "0.1.13"
112112
"@firebase/util" "0.2.14"
113113
faye-websocket "0.11.1"
114114
tslib "1.9.3"
115115

116-
"@firebase/firestore-types@1.2.1":
117-
version "1.2.1"
118-
resolved "https://registry.yarnpkg.com/@firebase/firestore-types/-/firestore-types-1.2.1.tgz#ac09c2e1b6324991cd05c1ce1f74e63771237fb8"
119-
integrity sha512-/Klu3uVLoTjW3ckYqFTV3lr9HzEKM7pMpPHao1Sy+YwIUmTjFMI1LE2WcXMx6HN2jipFjjD/Xjg0hY0+0dnPCg==
116+
"@firebase/firestore-types@1.3.0":
117+
version "1.3.0"
118+
resolved "https://registry.yarnpkg.com/@firebase/firestore-types/-/firestore-types-1.3.0.tgz#a32c132fff2bc77d36b6e864a3cc76c9cb75c965"
119+
integrity sha512-XPnfAaYsKgYivgl/U1+M5ulBG9Hxv52zrZR5TuaoKCU791t/E3K85rT1ZGtEHu9Fj4CPTep2NSl8I30MQpUlHA==
120120

121-
"@firebase/firestore@1.2.2":
122-
version "1.2.2"
123-
resolved "https://registry.yarnpkg.com/@firebase/firestore/-/firestore-1.2.2.tgz#9a97e60cc20bda7b06a6985190b4f33357a4fe28"
124-
integrity sha512-5o3SFTpMYaWrWRlm5qBX84fNDwdiPTbb0qo6KDI+OvIzTaMsEfOJ4vUz+Binxfq0dPen0fU6JLO+xix8Sa8TBA==
121+
"@firebase/firestore@1.3.0":
122+
version "1.3.0"
123+
resolved "https://registry.yarnpkg.com/@firebase/firestore/-/firestore-1.3.0.tgz#f704a778182c9df8efaeae1a4f951bb3170fa630"
124+
integrity sha512-KD+g6aGAGG/Z/qUR0tCN51XuScC1MmpIJuQt/vgO++WaADqRqURrhK/myEaGpE6GopKhZwcosoRJdeSyg9sTnQ==
125125
dependencies:
126-
"@firebase/firestore-types" "1.2.1"
126+
"@firebase/firestore-types" "1.3.0"
127127
"@firebase/logger" "0.1.13"
128128
"@firebase/webchannel-wrapper" "0.2.19"
129+
"@grpc/proto-loader" "^0.5.0"
129130
grpc "1.20.0"
130131
tslib "1.9.3"
131132

@@ -182,10 +183,10 @@
182183
resolved "https://registry.yarnpkg.com/@firebase/performance-types/-/performance-types-0.0.1.tgz#749b6351f5f802ec7a9be5737546eeda18e7ac4a"
183184
integrity sha512-U45GbVAnPyz7wPLd3FrWdTeaFSvgsnGfGK58VojfEMmFnMAixCM3qBv1XJ0xfhyKbK1xZN4+usWAR8F3CwRAXw==
184185

185-
"@firebase/[email protected].0":
186-
version "0.2.0"
187-
resolved "https://registry.yarnpkg.com/@firebase/performance/-/performance-0.2.0.tgz#cf0898ece0959dd63e8157ed29d3e8cd571d3d09"
188-
integrity sha512-XvBphI7THzaw0gdDJSeUEb+EGYGWOrwB78F30DBSP2d+UBtx8+UwJf/+Vlt0AlZFhv4v7ROFgGNYiLlY3z9lnw==
186+
"@firebase/[email protected].1":
187+
version "0.2.1"
188+
resolved "https://registry.yarnpkg.com/@firebase/performance/-/performance-0.2.1.tgz#14cf8c747672ca529cc6d07234ef5baab227d4c9"
189+
integrity sha512-vo/24+W35foc2ShRgeIlx2Ej45+Sn6uYPpnYzTtJb3DwE3sb0BVGocVgINbXyguUq2PHS+6yLsCm88y12DS2EA==
189190
dependencies:
190191
"@firebase/installations" "0.1.0"
191192
"@firebase/logger" "0.1.13"
@@ -227,6 +228,67 @@
227228
resolved "https://registry.yarnpkg.com/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.2.19.tgz#991df31d892a51414e0e544b5cff4216cfb04915"
228229
integrity sha512-U9e2dCB38mD2AvV/zAjghauwa0UX15Wt98iBgm8IOw8spluDxysx8UZFUhj38fu0iFXORVRBqseyK2wCxZIl5w==
229230

231+
"@grpc/proto-loader@^0.5.0":
232+
version "0.5.0"
233+
resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.5.0.tgz#6d21930530db6089ed68a90f10a22b76fdc3387d"
234+
integrity sha512-kF5toaC4A7PRjAuIxE0fYAv8WarJ6JELYlmHpkoo4EGTFvXUsQwVfyj2bgPV2023M77s2TtDn36wPMJB0sz8nA==
235+
dependencies:
236+
lodash.camelcase "^4.3.0"
237+
protobufjs "^6.8.6"
238+
239+
"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2":
240+
version "1.1.2"
241+
resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf"
242+
integrity sha1-m4sMxmPWaafY9vXQiToU00jzD78=
243+
244+
"@protobufjs/base64@^1.1.2":
245+
version "1.1.2"
246+
resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735"
247+
integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==
248+
249+
"@protobufjs/codegen@^2.0.4":
250+
version "2.0.4"
251+
resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb"
252+
integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==
253+
254+
"@protobufjs/eventemitter@^1.1.0":
255+
version "1.1.0"
256+
resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70"
257+
integrity sha1-NVy8mLr61ZePntCV85diHx0Ga3A=
258+
259+
"@protobufjs/fetch@^1.1.0":
260+
version "1.1.0"
261+
resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45"
262+
integrity sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=
263+
dependencies:
264+
"@protobufjs/aspromise" "^1.1.1"
265+
"@protobufjs/inquire" "^1.1.0"
266+
267+
"@protobufjs/float@^1.0.2":
268+
version "1.0.2"
269+
resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1"
270+
integrity sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E=
271+
272+
"@protobufjs/inquire@^1.1.0":
273+
version "1.1.0"
274+
resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089"
275+
integrity sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik=
276+
277+
"@protobufjs/path@^1.1.2":
278+
version "1.1.2"
279+
resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d"
280+
integrity sha1-bMKyDFya1q0NzP0hynZz2Nf79o0=
281+
282+
"@protobufjs/pool@^1.1.0":
283+
version "1.1.0"
284+
resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54"
285+
integrity sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=
286+
287+
"@protobufjs/utf8@^1.1.0":
288+
version "1.1.0"
289+
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
290+
integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=
291+
230292
231293
version "0.0.39"
232294
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
@@ -244,6 +306,11 @@
244306
resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-2.8.8.tgz#bf53a7d193ea8b03867a38bfdb4fbb0e0bf066c9"
245307
integrity sha512-OJSUxLaxXsjjhob2DBzqzgrkLmukM3+JMpRp0r0E4HTdT1nwDCWhaswjYxazPij6uOdzHCJfNbDjmQ1/rnNbCg==
246308

309+
"@types/long@^4.0.0":
310+
version "4.0.0"
311+
resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.0.tgz#719551d2352d301ac8b81db732acb6bdc28dbdef"
312+
integrity sha512-1w52Nyx4Gq47uuu0EVcsHBxZFJgurQ+rTKS3qMHxR1GY2T8c2AJYd6vZoZ9q1rupaDjU0yT+Jc2XTyXkjeMA+Q==
313+
247314
"@types/node@*":
248315
version "10.3.3"
249316
resolved "https://registry.yarnpkg.com/@types/node/-/node-10.3.3.tgz#8798d9e39af2fa604f715ee6a6b19796528e46c3"
@@ -254,6 +321,11 @@
254321
resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.113.tgz#4b41f38ad03e4b41f9dc259b3b58aecb22c9aebc"
255322
integrity sha512-f9XXUWFqryzjkZA1EqFvJHSFyqyasV17fq8zCDIzbRV4ctL7RrJGKvG+lcex86Rjbzd1GrER9h9VmF5sSjV0BQ==
256323

324+
"@types/node@^10.1.0":
325+
version "10.14.6"
326+
resolved "https://registry.yarnpkg.com/@types/node/-/node-10.14.6.tgz#9cbfcb62c50947217f4d88d4d274cc40c22625a9"
327+
integrity sha512-Fvm24+u85lGmV4hT5G++aht2C5I4Z4dYlWZIh62FAfFO/TfzXtPpoLI6I7AuBWkIFqZCnhFOoTT7RjjaIL5Fjg==
328+
257329
258330
version "0.0.30"
259331
resolved "https://registry.yarnpkg.com/@types/request/-/request-0.0.30.tgz#18208841a0cf6538eff5e306bfa92e86c8c8acae"
@@ -2292,18 +2364,18 @@ fined@^1.0.1:
22922364
object.pick "^1.2.0"
22932365
parse-filepath "^1.0.1"
22942366

2295-
firebase@^5.5.0:
2296-
version "5.11.0"
2297-
resolved "https://registry.yarnpkg.com/firebase/-/firebase-5.11.0.tgz#d1a37b822e01680a3d8d4b476b48d8c80949d9c1"
2298-
integrity sha512-9SKdrjwOU9X0n83Qw+RjQ2v3Fsst0O4x1EuhHj4OZLCe8IVI4aTQNEJqAPP/fBwhdQS/nFNQfcWPxbBu6EF4qw==
2367+
"firebase@>= 5.5.0 <7":
2368+
version "6.0.1"
2369+
resolved "https://registry.yarnpkg.com/firebase/-/firebase-6.0.1.tgz#14edc0e169b3d413b419359320ea2ecd0ec38cbd"
2370+
integrity sha512-Vi9VpGlUmVsEQ4nwcSjv2Rlo+G4umneZScEyKr6qiErfS5+J+fDsOp8UAzEexhZ1cnuKIZXmTF1KqQsXNiSlog==
22992371
dependencies:
2300-
"@firebase/app" "0.3.17"
2301-
"@firebase/auth" "0.10.2"
2302-
"@firebase/database" "0.3.20"
2303-
"@firebase/firestore" "1.2.2"
2372+
"@firebase/app" "0.4.0"
2373+
"@firebase/auth" "0.11.1"
2374+
"@firebase/database" "0.4.0"
2375+
"@firebase/firestore" "1.3.0"
23042376
"@firebase/functions" "0.4.6"
23052377
"@firebase/messaging" "0.3.19"
2306-
"@firebase/performance" "0.2.0"
2378+
"@firebase/performance" "0.2.1"
23072379
"@firebase/polyfill" "0.3.13"
23082380
"@firebase/storage" "0.2.15"
23092381

@@ -4073,6 +4145,11 @@ loggly@^1.1.0:
40734145
request "2.75.x"
40744146
timespan "2.3.x"
40754147

4148+
long@^4.0.0:
4149+
version "4.0.0"
4150+
resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28"
4151+
integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==
4152+
40764153
long@~3:
40774154
version "3.2.0"
40784155
resolved "https://registry.yarnpkg.com/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b"
@@ -5162,6 +5239,25 @@ protobufjs@^5.0.3:
51625239
glob "^7.0.5"
51635240
yargs "^3.10.0"
51645241

5242+
protobufjs@^6.8.6:
5243+
version "6.8.8"
5244+
resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-6.8.8.tgz#c8b4f1282fd7a90e6f5b109ed11c84af82908e7c"
5245+
integrity sha512-AAmHtD5pXgZfi7GMpllpO3q1Xw1OYldr+dMUlAnffGTAhqkg72WdmSY71uKBF/JuyiKs8psYbtKrhi0ASCD8qw==
5246+
dependencies:
5247+
"@protobufjs/aspromise" "^1.1.2"
5248+
"@protobufjs/base64" "^1.1.2"
5249+
"@protobufjs/codegen" "^2.0.4"
5250+
"@protobufjs/eventemitter" "^1.1.0"
5251+
"@protobufjs/fetch" "^1.1.0"
5252+
"@protobufjs/float" "^1.0.2"
5253+
"@protobufjs/inquire" "^1.1.0"
5254+
"@protobufjs/path" "^1.1.2"
5255+
"@protobufjs/pool" "^1.1.0"
5256+
"@protobufjs/utf8" "^1.1.0"
5257+
"@types/long" "^4.0.0"
5258+
"@types/node" "^10.1.0"
5259+
long "^4.0.0"
5260+
51655261
51665262
version "3.0.0"
51675263
resolved "https://registry.yarnpkg.com/protractor/-/protractor-3.0.0.tgz#ac76778770f629bab2afa56a6aac9c59ca6d259d"

0 commit comments

Comments
 (0)