Skip to content

Commit 548d78e

Browse files
authoredJun 6, 2023
Fix broken link of MIGRATING_TO_V2.md (#1217)
1 parent 2b76a5e commit 548d78e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/MIGRATING_TO_V2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ Ginkgo can now repeat a test suite N additional times by running `ginkgo --repea
391391
Ginkgo requires the tests to succeed during each repetition in order to consider the test run a success.
392392

393393
### New: --focus-file and --skip-file
394-
You can now tell Ginkgo to only run specs that match (or don't match) a given file filter. You can filter by filename as well as file:line. See the [Filtering Specs](onsi.github.io/ginkgo/#filtering-specs) documentation for more details.
394+
You can now tell Ginkgo to only run specs that match (or don't match) a given file filter. You can filter by filename as well as file:line. See the [Filtering Specs](https://onsi.github.io/ginkgo/#filtering-specs) documentation for more details.
395395

396396
### Improved: windows support for capturing stdout and stderr
397397
In V1 Ginkgo would run windows tests in parallel with the `--stream` option. This would result in hard-to-understand interleaved output. The reason behind this design choice was that it proved challenging to intercept all stdout and stderr output on Windows. V2 implements a best-effort output interception scheme for windows that entails reassigning the global `os.Stdout` and `os.Stderr` variables. While not as bullet-proof as the Unix `syscall.Dup2` based implementation, this is likely good enough for most usecases and allows Ginkgo support on Windows to come into parity with unix.

0 commit comments

Comments
 (0)
Please sign in to comment.