Jean-Christophe Amiel

Results 360 comments of Jean-Christophe Amiel

Much better! Enhancement issue created => #2427

I was reviewing a first PR on this topic and it raises some questions. 1. has our `isIsoDate` check the same semantic as ? In the MDN, the format used...

Hi @humphd we have implement the `isIsoDate` predicate in #2565: it takes a string as input an check the RFC3339 format : 'YYYY-MM-DDTHH:mm:ss.sssZ' So now this assert should be OK...

Hi @michelkaeser Can you use JSON unicode literal (`{` => `\u007B`, `}` => `\u007D`) ? ```hurl POST http://localhost:8000/api/v1/messages { "template": "\u007B\u007B#user~\u007D\u007DI want a response to the following query:\u007B\u007Bquery\u007D\u007D\u007B\u007B~/user\u007D\u007D" } ```...

Related #2428

Hi @beaterblank While important this issue is not in our top priority for the moment! If you spend time and efforts and it, there is low chance that we integrate...

Hi @beaterblank I'll make feedback asap

Hi @beaterblank this has been fixed by #2565. I'm. closing this one now

Hi @kaala This is the intended design of [`--verbose` option](https://hurl.dev/docs/manual.html#verbose). You can use [`--very-verbose`](https://hurl.dev/docs/manual.html#very-verbose) to see all response bodies __on standard error__. Wether you use or not `--verbose`/`--very-verbose`, the last...

Sure, the idea is to be able to chain request to get data. The typical use case is getting data behind a login: ```hurl POST http://foo.com/login [FormParams] username: bob password:...