Skip to content

Commit efc0117

Browse files
authored
test(e2e): force jest to use browser (#9455)
1 parent d5ff5a4 commit efc0117

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

e2e/smoke-tests/jest-resolver.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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 (/firebase/.test(path)) {
20+
return options.defaultResolver(path, {
21+
...options,
22+
conditions: ['browser', 'require']
23+
});
24+
}
25+
return options.defaultResolver(path, options);
26+
};

e2e/smoke-tests/jest.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

2829
export default config;

0 commit comments

Comments
 (0)