File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ * @license
3+ * Copyright 2026 Google LLC
4+ *
5+ * Licensed under the Apache License, Version 2.0 (the "License");
6+ * you may not use this file except in compliance with the License.
7+ * You may obtain a copy of the License at
8+ *
9+ * http://www.apache.org/licenses/LICENSE-2.0
10+ *
11+ * Unless required by applicable law or agreed to in writing, software
12+ * distributed under the License is distributed on an "AS IS" BASIS,
13+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ * See the License for the specific language governing permissions and
15+ * limitations under the License.
16+ */
17+
18+ module . exports = ( path , options ) => {
19+ if ( / f i r e b a s e / . test ( path ) ) {
20+ return options . defaultResolver ( path , {
21+ ...options ,
22+ conditions : [ 'browser' , 'require' ]
23+ } ) ;
24+ }
25+ return options . defaultResolver ( path , options ) ;
26+ } ;
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ const config: Config = {
2222 testEnvironment : './fix-jsdom-environment.ts' ,
2323 globals : {
2424 FIREBASE_APPCHECK_DEBUG_TOKEN : process . env . APP_CHECK_DEBUG_TOKEN
25- }
25+ } ,
26+ resolver : './jest-resolver.js'
2627} ;
2728
2829export default config ;
You can’t perform that action at this time.
0 commit comments