-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(jest-runtime): Guard '_isMockFunction' access with 'in'
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
packages/jest-runtime/src/__tests__/runtime_resetModules_unsafe_global_proxy.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
*/ | ||
|
||
'use strict'; | ||
|
||
import NodeEnvironment from 'jest-environment-node'; | ||
|
||
let createRuntime; | ||
|
||
describe('Runtime', () => { | ||
beforeEach(() => { | ||
createRuntime = require('createRuntime'); | ||
}); | ||
|
||
describe('resetModules', () => { | ||
it('does not throw when accessing _isMockFunction on an unsafe global', async () => { | ||
const runtime = await createRuntime(__filename); | ||
runtime._environment.global.UNSAFE_GLOBAL = new Proxy( | ||
{}, | ||
{ | ||
get(target, p, receiver) { | ||
if (p === '_isMockFunction') throw new Error('Unsafe global!'); | ||
}, | ||
}, | ||
); | ||
runtime.resetModules(); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters