26 lines
1,003 B
JavaScript
26 lines
1,003 B
JavaScript
|
/**
|
||
|
* 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.
|
||
|
'ReactVersion matches package.json' |> test(%, () => {
|
||
|
if ((flags => flags.build && flags.stable && !flags.www) |> gate(%)) {
|
||
|
const React = 'react' |> require(%);
|
||
|
const packageJSON = 'react/package.json' |> require(%);
|
||
|
packageJSON.version |> (React.version |> expect(%)).toBe(%);
|
||
|
}
|
||
|
});
|