Lines Matching refs:stdio
16 // Should populate stdio with undefined if len < 3
21 assert.strictEqual(Object.hasOwn(result, 'stdio'), true);
26 // Should throw if stdio has ipc and sync is true
32 // Should throw if stdio is not a valid input
34 const stdio = ['foo'];
35 assert.throws(() => getValidStdio(stdio, false),
40 // Should throw if stdio is not a valid option
42 const stdio = [{ foo: 'bar' }];
43 assert.throws(() => getValidStdio(stdio), expectedError);
50 stdio: [
60 'stdio is not associated with file descriptors in Workers');