James Messinger
James Messinger
There's not currently an easy way to do that, but I like the idea. I could add something like an `abort()` function that would skip any remaining tests and stop...
FYI - If you pass `null` to the `postman.setNextRequest()` function, it will automatically terminate the collection run. So there's no need to create a do-nothing request just to pass to...
npm install is just a way to get the code locally on your computer. Or you could just clone the Git repo. Having it locally on your computer is useful...
@Lampei - It sounds like you may be using an outdated version of Postman that doesn't support `pm.sendRequest`. Make sure you're using one of [the native apps](https://www.getpostman.com/apps), not the Chrome...
Good catch. The code is currently written with the expectation that any hooks (e.g. `before`, `after`, etc.) will be written before anything else, but there's no reason I can't make...
Yeah, there are a couple ways you can do that. 1. Use Node's [cluster](https://nodejs.org/api/cluster.html#cluster_cluster) feature, which lets you partition your app across multiple sub-processes. Each process can run a separate...
Each Node cluster runs in a separate process, so there is no shared memory. So if you're using the [MemoryDataStore](https://github.com/BigstickCarpet/swagger-express-middleware/blob/master/docs/exports/MemoryDataStore.md), then you'll need to maintain separate data for each cluster....
Please see the [mock middleware documentation](https://github.com/BigstickCarpet/swagger-express-middleware/blob/master/docs/middleware/mock.md#customizing-behavior) for ways to customize the behavior and response
See [the documentation](https://github.com/BigstickCarpet/swagger-express-middleware/blob/master/docs/middleware/mock.md#how-primary-keys-are-determined) for how the mock middleware determiens primary keys. In your case the `timing` property meets the criteria for the primary key (I'm guessing because it's a required...
Not in Swagger Server, but you can do that by using [Swagger Express Middleware](https://github.com/BigstickCarpet/swagger-express-middleware/) directly.