mirror of
https://github.com/facebook/react.git
synced 2026-02-25 05:03:03 +00:00
* Facebook -> Meta in copyright rg --files | xargs sed -i 's#Copyright (c) Facebook, Inc. and its affiliates.#Copyright (c) Meta Platforms, Inc. and affiliates.#g' * Manual tweaks
151 lines
3.6 KiB
JavaScript
151 lines
3.6 KiB
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.
|
|
*/
|
|
'use strict';
|
|
|
|
const semver = require('semver');
|
|
|
|
let shouldPass;
|
|
let isFocused;
|
|
let shouldIgnore;
|
|
describe('transform-react-version-pragma', () => {
|
|
const originalTest = test;
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
const _test_react_version = (range, testName, cb) => {
|
|
originalTest(testName, (...args) => {
|
|
shouldPass = !!semver.satisfies('18.0.0', range);
|
|
return cb(...args);
|
|
});
|
|
};
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
const _test_react_version_focus = (range, testName, cb) => {
|
|
originalTest(testName, (...args) => {
|
|
shouldPass = !!semver.satisfies('18.0.0', range);
|
|
isFocused = true;
|
|
return cb(...args);
|
|
});
|
|
};
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
const _test_ignore_for_react_version = (testName, cb) => {
|
|
originalTest(testName, (...args) => {
|
|
shouldIgnore = true;
|
|
shouldPass = false;
|
|
return cb(...args);
|
|
});
|
|
};
|
|
|
|
beforeEach(() => {
|
|
shouldPass = null;
|
|
isFocused = false;
|
|
shouldIgnore = false;
|
|
});
|
|
|
|
// @reactVersion >= 17.9
|
|
test('reactVersion flag is on >=', () => {
|
|
expect(shouldPass).toBe(true);
|
|
});
|
|
|
|
// @reactVersion >= 18.1
|
|
test('reactVersion flag is off >=', () => {
|
|
expect(shouldPass).toBe(false);
|
|
});
|
|
|
|
// @reactVersion <= 18.1
|
|
test('reactVersion flag is on <=', () => {
|
|
expect(shouldPass).toBe(true);
|
|
});
|
|
|
|
// @reactVersion <= 17.9
|
|
test('reactVersion flag is off <=', () => {
|
|
expect(shouldPass).toBe(false);
|
|
});
|
|
|
|
// @reactVersion > 17.9
|
|
test('reactVersion flag is on >', () => {
|
|
expect(shouldPass).toBe(true);
|
|
});
|
|
|
|
// @reactVersion > 18.1
|
|
test('reactVersion flag is off >', () => {
|
|
expect(shouldPass).toBe(false);
|
|
});
|
|
|
|
// @reactVersion < 18.1
|
|
test('reactVersion flag is on <', () => {
|
|
expect(shouldPass).toBe(true);
|
|
});
|
|
|
|
// @reactVersion < 17.0.0
|
|
test('reactVersion flag is off <', () => {
|
|
expect(shouldPass).toBe(false);
|
|
});
|
|
|
|
// @reactVersion = 18.0
|
|
test('reactVersion flag is on =', () => {
|
|
expect(shouldPass).toBe(true);
|
|
});
|
|
|
|
// @reactVersion = 18.1
|
|
test('reactVersion flag is off =', () => {
|
|
expect(shouldPass).toBe(false);
|
|
});
|
|
|
|
/* eslint-disable jest/no-focused-tests */
|
|
|
|
// @reactVersion >= 18.1
|
|
fit('reactVersion fit', () => {
|
|
expect(shouldPass).toBe(false);
|
|
expect(isFocused).toBe(true);
|
|
});
|
|
|
|
// @reactVersion <= 18.1
|
|
test.only('reactVersion test.only', () => {
|
|
expect(shouldPass).toBe(true);
|
|
expect(isFocused).toBe(true);
|
|
});
|
|
|
|
// @reactVersion <= 18.1
|
|
// @reactVersion <= 17.1
|
|
test('reactVersion multiple pragmas fail', () => {
|
|
expect(shouldPass).toBe(false);
|
|
expect(isFocused).toBe(false);
|
|
});
|
|
|
|
// @reactVersion <= 18.1
|
|
// @reactVersion >= 17.1
|
|
test('reactVersion multiple pragmas pass', () => {
|
|
expect(shouldPass).toBe(true);
|
|
expect(isFocused).toBe(false);
|
|
});
|
|
|
|
// @reactVersion <= 18.1
|
|
// @reactVersion <= 17.1
|
|
test.only('reactVersion focused multiple pragmas fail', () => {
|
|
expect(shouldPass).toBe(false);
|
|
expect(isFocused).toBe(true);
|
|
});
|
|
|
|
// @reactVersion <= 18.1
|
|
// @reactVersion >= 17.1
|
|
test.only('reactVersion focused multiple pragmas pass', () => {
|
|
expect(shouldPass).toBe(true);
|
|
expect(isFocused).toBe(true);
|
|
});
|
|
|
|
test('ignore test if no reactVersion', () => {
|
|
expect(shouldPass).toBe(false);
|
|
expect(shouldIgnore).toBe(true);
|
|
});
|
|
|
|
test.only('ignore focused test if no reactVersion', () => {
|
|
expect(shouldPass).toBe(false);
|
|
expect(shouldIgnore).toBe(true);
|
|
});
|
|
});
|