UNPKG

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.

20 lines (19 loc) 490 B
// Polyfill crypto() in the Node.js environment "use strict"; if (!global.crypto) { let webcrypto; Object.defineProperty(global, 'crypto', { enumerable: false, configurable: true, get () { if (!webcrypto) { webcrypto = require('node:crypto').webcrypto; } return webcrypto; }, set (value) { webcrypto = value; } }); } //# sourceMappingURL=node-polyfill-crypto.js.map