fix: no more need to hijack process.stdout on Win32 (#25765)
This commit is contained in:
parent
9717dff4fa
commit
57dc170e81
10 changed files with 9 additions and 63 deletions
|
@ -159,6 +159,12 @@ describe('node feature', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe('process.stdout', () => {
|
||||
it('is a real Node stream', () => {
|
||||
expect((process.stdout as any)._type).to.not.be.undefined();
|
||||
});
|
||||
});
|
||||
|
||||
ifdescribe(features.isRunAsNodeEnabled())('inspector', () => {
|
||||
let child: childProcess.ChildProcessWithoutNullStreams;
|
||||
let exitPromise: Promise<any[]>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue