ReactVersion-test.js — react Source File
Architecture documentation for ReactVersion-test.js, a javascript file in the react codebase.
Entity Profile
Source Code
/**
* 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.
*
* @emails react-core
* @jest-environment node
*/
'use strict';
// NOTE: Intentionally using the dynamic version of the `gate` pragma to opt out
// the negative test behavior. If this test happens to pass when running
// against files source, that's fine. But all we care about is the behavior of
// the build artifacts.
// TODO: The experimental builds have a different version at runtime than
// the package.json because DevTools uses it for feature detection. Consider
// some other way of handling that.
test('ReactVersion matches package.json', () => {
if (gate(flags => flags.build && flags.stable && !flags.www)) {
const React = require('react');
const packageJSON = require('react/package.json');
expect(React.version).toBe(packageJSON.version);
}
});
Source
Frequently Asked Questions
What does ReactVersion-test.js do?
ReactVersion-test.js is a source file in the react codebase, written in javascript.
Where is ReactVersion-test.js in the architecture?
ReactVersion-test.js is located at packages/react/src/__tests__/ReactVersion-test.js (directory: packages/react/src/__tests__).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free