Skip to content

Commit

Permalink
remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber committed Oct 7, 2024
1 parent 31eef66 commit 9e57720
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions packages/docusaurus/src/client/renderToHtml.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@
import type {ReactNode} from 'react';
// @ts-expect-error: see https://github.com/facebook/react/issues/31134
import {renderToReadableStream as renderToReadableStreamImpl} from 'react-dom/server.browser';
import {
renderToString,
type renderToReadableStream as renderToReadableStreamType,
} from 'react-dom/server';
import {type renderToReadableStream as renderToReadableStreamType} from 'react-dom/server';
import {text} from 'stream/consumers';

const renderToReadableStream: typeof renderToReadableStreamType =
Expand All @@ -25,11 +22,6 @@ export async function renderToHtml(app: ReactNode): Promise<string> {
await stream.allReady;
// @ts-expect-error: it works fine
const html = await text(stream);

if (html !== renderToString(app)) {
throw new Error('Bad');
}

resolve(html);
}, reject);
});
Expand Down

0 comments on commit 9e57720

Please sign in to comment.