George Blue

Results 72 comments of George Blue

I think that's a good feature request. At the moment @onsi is working on Ginko 2.0 which will have more sophisticated control over test execution. It might make sense to...

This looks like a really useful thing to test. Thank you for sharing it. I can see how relying on internal names within Ginkgo is messy. The suggestion is that...

Ginkgo 2.0 (see #711) will hopefully add some additional controls to help with this.

This is mentioned in the "Table of Differences" in the CLI v7 upgrade guide: https://docs.cloudfoundry.org/cf-cli/v7.html The column is planned to be added back in V8 and the code for this...

The v6 CLI should still work. I've seen people with CF CLI v6 installed as `cf6` so they can switch easily between versions. I realise it's far from ideal, but...

@ncoden, unfortunately a `package-lock.json` file applies only to the top level package, The lockfile is ignored when installing modules from `npm`. So if the `package-lock.json` only has secure versions, a...

Would a [peer dependency](https://nodejs.org/en/blog/npm/peer-dependencies/) be an option?

If `jQuery` were a peer dependency of your module, then users would have to install it independently (it would not be automatically installed when your module is installed). Because David-dm...

Hi @nkuacac. There is still a test for this, which is passing: https://github.com/onsi/gomega/blob/7cadcf6e3a21ed4daa9f4d1630913c0dcdb23e73/internal/assertion_test.go#L133-L137 It is possible to share a small example, saying what you expect to happen, and what actually...

Hi @chriscannon. I don't have much context on the `VerifyForm()` and `VerifyFormKV()` handlers or forms in general. It looks like `VerifyForm()` takes a `url.Values` type which is a `map[string][]string`. So...