Rob Cooper

Results 9 issues of Rob Cooper

### Steps to reproduce I'm using the ES2018 syntax in my code, and Esprima is failing to parse the _"spread"_ syntax (`...`), for creating iterables and concatenating objects. ```js //...

(Opening as a separate issue, from #22 , for ease of tracking) The latest version fails when trying to parse tests (`it` blocks) which use the JS ["spread" operator/syntax](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax) ```js...

With Mocha, you can choose to skip tests, or only run particular tests using `.skip()` and `.only()`. I'm not sure how often the latter might occur in users tests... however...

I'd like to have a central (common) instance of the `hippieSwaggerApp()` function, to make it cleaner for each of my tests to call it. As a workaround, within each Test...

Use Case: In our Swagger Docs, we have an example of `response 400`: invalid data. I'm unable to test this with Hippie-Swagger since sending invalid (or missing) data results in:...

### What is your Scenario? Found while reproducing #6918. This test promotes a petition, and goes through the Paypal payment flow _(pop-up window)_. ### What is the Current behavior? The...

TYPE: bug
FREQUENCY: level 1
SYSTEM: window management

Specifying the hippie request as JSON: `hippie.json()`, doesn't result in the response being JSON. What I'm doing (example): ```js // Create User Example const hippieCreateUserRequest = () => { const...

I know this is unlikely to be fixed, but just raising it to provide feedback (or if I get the chance to look in to it). Each other method is...

### 🚀 Feature Request TestCafe has an option to filter elements by their visibility, either using [.filterVisible](https://testcafe.io/documentation/402751/reference/test-api/selector/filtervisible) or using `with` (their version of `filter`) [visibilityCheck](https://testcafe.io/documentation/402743/reference/test-api/selector/with#optionsvisibilitycheck). It would be great to...