/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/jest-runtime/src/__tests__/test_root/RegularModule.js
44 строки
1 KB
Paul O’Shannessy
Update copyrights with Meta Platforms, restore original license in Jasmine fork (#13879)
09 фев 2023, 10:13
Не верифицирован
09 фев 2023, 10:13
6d2632a
Код
Авторство
О чём код?
/** * 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'; // For some reason thinks it's a strict violation. if (exports !== this) { throw new Error('Invalid module context'); } let moduleStateValue = 'default'; function setModuleStateValue(value) { moduleStateValue = value; } function getModuleStateValue() { return moduleStateValue; } const lazyRequire = () => { // Make sure ModuleWithSideEffects is part of the module map for // RegularModule. require('ModuleWithSideEffects'); }; exports.filename = module.filename; exports.getModuleStateValue = getModuleStateValue; exports.isRealModule = true; exports.jest = jest; exports.lazyRequire = lazyRequire; exports.object = {}; exports.parent = module.parent; exports.path = module.path; exports.paths = module.paths; exports.setModuleStateValue = setModuleStateValue; exports.module = module; exports.loaded = module.loaded; exports.isLoaded = () => module.loaded;