Skip to content

Commit

Permalink
remote gating from bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
salazarm committed Oct 4, 2021
1 parent 19a1520 commit b1c9e62
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2371,7 +2371,6 @@ describe('ReactDOMServerPartialHydration', () => {
document.body.removeChild(parentContainer);
});

// @gate !enableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay
it('blocks only on the last continuous event (legacy system)', async () => {
let suspend1 = false;
let resolve1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,6 @@ describe('ReactDOMServerSelectiveHydration', () => {
document.body.removeChild(container);
});

// @gate !enableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay
it('hydrates at higher pri if sync did not work first time', async () => {
let suspend = false;
let resolve;
Expand Down Expand Up @@ -285,7 +284,6 @@ describe('ReactDOMServerSelectiveHydration', () => {
document.body.removeChild(container);
});

// @gate !enableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay
it('hydrates at higher pri for secondary discrete events', async () => {
let suspend = false;
let resolve;
Expand Down Expand Up @@ -470,7 +468,6 @@ describe('ReactDOMServerSelectiveHydration', () => {
});

// @gate www
// @gate !enableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay
it('hydrates at higher pri if sync did not work first time (createEventHandle)', async () => {
let suspend = false;
let isServerRendering = true;
Expand Down Expand Up @@ -569,7 +566,6 @@ describe('ReactDOMServerSelectiveHydration', () => {
});

// @gate www
// @gate !enableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay
it('hydrates at higher pri for secondary discrete events (createEventHandle)', async () => {
const setClick = ReactDOM.unstable_createEventHandle('click');
let suspend = false;
Expand Down Expand Up @@ -684,7 +680,6 @@ describe('ReactDOMServerSelectiveHydration', () => {
document.body.removeChild(container);
});

// @gate !enableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay
it('hydrates the hovered targets as higher priority for continuous events', async () => {
let suspend = false;
let resolve;
Expand Down Expand Up @@ -804,7 +799,6 @@ describe('ReactDOMServerSelectiveHydration', () => {
document.body.removeChild(container);
});

// @gate !enableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay
it('hydrates the last target path first for continuous events', async () => {
let suspend = false;
let resolve;
Expand Down Expand Up @@ -942,7 +936,6 @@ describe('ReactDOMServerSelectiveHydration', () => {
});

// @gate experimental || www
// @gate !enableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay
it('hydrates before an update even if hydration moves away from it', async () => {
function Child({text}) {
Scheduler.unstable_yieldValue(text);
Expand Down

0 comments on commit b1c9e62

Please sign in to comment.