George Blue
George Blue
One thing that could be improved is to use Go standard library functions that automatically append `.exe` on Windows. For instance when [the `exec.LookPath` function](https://golang.org/pkg/os/exec/#LookPath) is called with a path...
If we were designing this from the start, it would have made sense to make `-untilItFails` a flag that takes an optional limit. I've not looked at the code, but...
I've used the Ginkgo random seed `ginkgo.GinkgoRandomSeed()` to help with this sort of problem before. If there's a shared resource (let's say a file, but it could be anything) then...
There is programatic `Skip()`, for instance: ```go BeforeEach(func() { if !precondition() { Skip("precondition not met") } } ``` Is that any good?
Hi @rejoshed. You can just use higher order functions in Go (that is functions that return functions). For example: ```go func contextFuncGenerator(s string) func() { return func() { BeforeEach(func() {...
The IDE could struggle in that situation. You could mark the test as focused (either with `FIt` or the `Focus` decorator) and try to run all the tests, allowing Ginkgo...
I’ve merged PR #1005 which updates Gomega and indirectly updates YAML. Do you need a new release of Ginkgo?
Hang on. We have added YAML v3, but still have v2 as well…
Ginkgo should run `Test...(t *testing.T)` tests too. - What's the error? - Do you get an error without `--dry-run`? - Can you successfully run the tests using `go test`?
Here's the original conversation: https://github.com/onsi/ginkgo/pull/775 In summary the idea was that slim-sprig added fewer dependencies, resulting in a potentially lower security risk relating to keeping dependencies up to date. But...