Skip to content

Commit

Permalink
run SchedulerFeatureFlags with variant flags again (#26851)
Browse files Browse the repository at this point in the history
With df12d7e I accidentally made it so
that tests aren't run with the 2 variant modes for most
SchedulerFeatureFlags anymore. This fixes it with the same approach as
ee4233b.

Test Plan:
Run and notice the boolean flags follow the variant:
```
yarn test-www --variant=true
yarn test-www --variant=false
```

DiffTrain build for commit 9a72e62.
  • Loading branch information
kassens committed May 25, 2023
1 parent 475ee24 commit eb5c467
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23930,7 +23930,7 @@ function createFiberRoot(
return root;
}

var ReactVersion = "18.3.0-canary-ee4233bdb-20230524";
var ReactVersion = "18.3.0-canary-9a72e6227-20230525";

// Might add PROFILE later.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8617,7 +8617,7 @@ var devToolsConfig$jscomp$inline_1036 = {
throw Error("TestRenderer does not support findFiberByHostInstance()");
},
bundleType: 0,
version: "18.3.0-canary-ee4233bdb-20230524",
version: "18.3.0-canary-9a72e6227-20230525",
rendererPackageName: "react-test-renderer"
};
var internals$jscomp$inline_1235 = {
Expand Down Expand Up @@ -8648,7 +8648,7 @@ var internals$jscomp$inline_1235 = {
scheduleRoot: null,
setRefreshHandler: null,
getCurrentFiber: null,
reconcilerVersion: "18.3.0-canary-ee4233bdb-20230524"
reconcilerVersion: "18.3.0-canary-9a72e6227-20230525"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_1236 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9043,7 +9043,7 @@ var devToolsConfig$jscomp$inline_1078 = {
throw Error("TestRenderer does not support findFiberByHostInstance()");
},
bundleType: 0,
version: "18.3.0-canary-ee4233bdb-20230524",
version: "18.3.0-canary-9a72e6227-20230525",
rendererPackageName: "react-test-renderer"
};
var internals$jscomp$inline_1276 = {
Expand Down Expand Up @@ -9074,7 +9074,7 @@ var internals$jscomp$inline_1276 = {
scheduleRoot: null,
setRefreshHandler: null,
getCurrentFiber: null,
reconcilerVersion: "18.3.0-canary-ee4233bdb-20230524"
reconcilerVersion: "18.3.0-canary-9a72e6227-20230525"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_1277 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if (
}
"use strict";

var ReactVersion = "18.3.0-canary-ee4233bdb-20230524";
var ReactVersion = "18.3.0-canary-9a72e6227-20230525";

// ATTENTION
// When adding new symbols to this file,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -642,4 +642,4 @@ exports.useSyncExternalStore = function (
);
};
exports.useTransition = useTransition;
exports.version = "18.3.0-canary-ee4233bdb-20230524";
exports.version = "18.3.0-canary-9a72e6227-20230525";
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ exports.useSyncExternalStore = function (
);
};
exports.useTransition = useTransition;
exports.version = "18.3.0-canary-ee4233bdb-20230524";
exports.version = "18.3.0-canary-9a72e6227-20230525";

/* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
if (
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ee4233bdbc71a7e09395a613c7dde01194d2a830
9a72e622716f6dab714ebe8b957ee9970154664b

0 comments on commit eb5c467

Please sign in to comment.