Skip to content
Prev Previous commit
Gate test
  • Loading branch information
sebmarkbage committed Aug 31, 2023
commit 7733a1570f97ea4cc6cefc00a868ddd2de7c3ca7
Original file line number Diff line number Diff line change
Expand Up @@ -6193,7 +6193,7 @@ describe('ReactDOMFizzServer', () => {
},
);

// @gate experimental
// @gate enablePostpone
it('supports postponing in prerender and resuming later', async () => {
let prerendering = true;
function Postpone() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ describe('ReactDOMFizzStaticBrowser', () => {
expect(errors).toEqual(['uh oh', 'uh oh']);
});

// @gate experimental
// @gate enablePostpone
it('supports postponing in prerender and resuming later', async () => {
let prerendering = true;
function Postpone() {
Expand Down Expand Up @@ -493,7 +493,7 @@ describe('ReactDOMFizzStaticBrowser', () => {
// TODO: expect(getVisibleChildren(container)).toEqual(<div>Hello</div>);
});

// @gate experimental
// @gate enablePostpone
it('only emits end tags once when resuming', async () => {
let prerendering = true;
function Postpone() {
Expand Down