70bf21e064
Handle Changesets / Handle Changesets (push) Waiting to run
Semgrep OSS scan / semgrep-oss (push) Waiting to run
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
10 lines
318 B
TypeScript
10 lines
318 B
TypeScript
/**
|
|
* This file simply re-exports the process's writeable streams
|
|
* The intention is to provide a boundary to mock in tests
|
|
* Anywhere in this package that writes to stdout/stderr,
|
|
* should use this module to get references to them.
|
|
*/
|
|
|
|
export const stdout = process.stdout;
|
|
export const stderr = process.stderr;
|