File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
packages/rules-unit-testing/test Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -276,9 +276,14 @@ describe('Testing Module Tests', function () {
276
276
storageBucket : 'foo'
277
277
} ) ;
278
278
279
- await firebase . assertSucceeds (
280
- app . storage ( ) . bucket ( ) . file ( '/foo/bar.txt' ) . save ( 'Hello, World!' )
281
- ) ;
279
+ // TODO: This test cannot be enabled without adding credentials to the test environment
280
+ // due to an underlying issue with firebase-admin storage. For now we will run it
281
+ // locally but not in CI.
282
+ if ( process . env . CI !== "true" ) {
283
+ await firebase . assertSucceeds (
284
+ app . storage ( ) . bucket ( ) . file ( '/foo/bar.txt' ) . save ( 'Hello, World!' )
285
+ ) ;
286
+ }
282
287
} ) ;
283
288
284
289
it ( 'initializeAdminApp() and initializeTestApp() work together' , async function ( ) {
You can’t perform that action at this time.
0 commit comments