| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent c2eac7d commit 6e56f2d
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,9 +11,6 @@ prefix parallel | |||
| 11 | 11 | test-crypto-keygen: PASS,FLAKY | |
| 12 | 12 | # https://github.com/nodejs/node/issues/41201 | |
| 13 | 13 | test-fs-rmdir-recursive: PASS, FLAKY | |
| 14 | - # https://github.com/nodejs/node/issues/48300 | ||
| 15 | - test-child-process-pipe-dataflow: SKIP | ||
| 16 | - test-child-process-stdio-reuse-readable-stdio: PASS, FLAKY | ||
| 17 | 14 | ||
| 18 | 15 | # Windows on ARM | |
| 19 | 16 | [$system==win32 && $arch==arm64] | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,11 @@ | |||
| 1 | 1 | 'use strict'; | |
| 2 | 2 | const common = require('../common'); | |
| 3 | + | ||
| 4 | + if (common.isWindows) { | ||
| 5 | + // https://github.com/nodejs/node/issues/48300 | ||
| 6 | + common.skip('Does not work with cygwin quirks on Windows'); | ||
| 7 | + } | ||
| 8 | + | ||
| 3 | 9 | const assert = require('assert'); | |
| 4 | 10 | const fs = require('fs'); | |
| 5 | 11 | const spawn = require('child_process').spawn; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,11 @@ | |||
| 1 | 1 | 'use strict'; | |
| 2 | 2 | const common = require('../common'); | |
| 3 | + | ||
| 4 | + if (common.isWindows) { | ||
| 5 | + // https://github.com/nodejs/node/issues/48300 | ||
| 6 | + common.skip('Does not work with cygwin quirks on Windows'); | ||
| 7 | + } | ||
| 8 | + | ||
| 3 | 9 | const assert = require('assert'); | |
| 4 | 10 | const { spawn } = require('child_process'); | |
| 5 | 11 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments