pulse-dashboard
Version:
A Next.js Dashboard application for real-time monitoring and historical analysis of Playwright test executions. This component provides the UI for visualizing Playwright test results and can be run as a standalone CLI tool.
18 lines (17 loc) • 580 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "renderToString", {
enumerable: true,
get: function() {
return renderToString;
}
});
const _nodewebstreamshelper = require("../stream-utils/node-web-streams-helper");
async function renderToString({ renderToReadableStream, element }) {
const renderStream = await renderToReadableStream(element);
await renderStream.allReady;
return (0, _nodewebstreamshelper.streamToString)(renderStream);
}
//# sourceMappingURL=render-to-string.js.map