| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 2b93333 commit cadb261
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,4 +16,8 @@ assert.equal(child.stderr, null); | |||
| 16 | 16 | ||
| 17 | 17 | options = {stdio: 'ignore'}; | |
| 18 | 18 | child = common.spawnSyncCat(options); | |
| 19 | - assert.deepEqual(options, {stdio: 'ignore'}); | ||
| 19 | + assert.deepStrictEqual(options, {stdio: 'ignore'}); | ||
| 20 | + | ||
| 21 | + assert.throws(() => { | ||
| 22 | + common.spawnPwd({stdio: ['pipe', 'pipe', 'pipe', 'ipc', 'ipc']}); | ||
| 23 | + }, /^Error: Child process can have only one IPC pipe$/); | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments