File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 49
49
"proto:logging" : " mkdir -p proto && pbjs -t static-module -w commonjs -p node_modules/google-proto-files google/logging/v2/logging.proto | pbts -o proto/logging.d.ts -"
50
50
},
51
51
"dependencies" : {
52
- "@google-cloud/common-grpc" : " ^0.9.2 " ,
52
+ "@google-cloud/common-grpc" : " ^0.10.0 " ,
53
53
"@google-cloud/paginator" : " ^0.1.0" ,
54
54
"@google-cloud/projectify" : " ^0.3.0" ,
55
55
"@google-cloud/promisify" : " ^0.3.0" ,
Original file line number Diff line number Diff line change @@ -85,7 +85,10 @@ describe('Logging', () => {
85
85
async function getAndDelete ( method : ( ) => Promise < [ ServiceObject [ ] ] > ) {
86
86
const [ objects ] = await method ( ) ;
87
87
return Promise . all (
88
- objects . filter ( o => ( o . name || o . id ) . indexOf ( TESTS_PREFIX ) === 0 )
88
+ objects
89
+ . filter (
90
+ // tslint:disable-next-line no-any
91
+ o => ( ( o as any ) . name || o . id ) . indexOf ( TESTS_PREFIX ) === 0 )
89
92
. map ( o => o . delete ( ) ) ) ;
90
93
}
91
94
} ) ;
You can’t perform that action at this time.
0 commit comments