chakram
chakram copied to clipboard
REST API test framework. BDD and exploits promises
Hi @dareid I have used Chakram to automate API testing and it is pretty good. Let me know the parts of the project where I can contribute? May some parts...
When I try to run `npm instal -save-dev chakram` I get error 404 Not found stringify-clone@^1.0.0 Is there any way to fix or workaround this?
In https://github.com/dareid/chakram/issues/6#issuecomment-102779086 I note the inclusion of the extra word 'comprise' for request assertion chains. I can't find documentation for this keyword through an API search or elsewhere on the...
I used chakram to call GET and the server returns an image in buffer. Using Postman, I can see the image returned. Not sure how to handle it with chakram...
Hi Daniel, I think that it might be nice to have an option (or a default) to automatically include responses to assertion error messages. It would make it possible to...
I'm trying to write a function that validates if my response has the correct JSON Schema but I keep getting the same error message for whatever I try: "error: Invalid...
I am trying to upload a file using the chakram. But while doing so I am getting **No files found** error. Here is the configuration of my test: ``` const...
How to send ```JsessionId``` and ```xsrf token``` to ```chakram.post( ) method?```
I am trying to pass certificate (cert.pem and key.key) in the chakram.get using the following options: var config = { agentOptions : { key: fs.readFileSync(certfilePath), cert: fs.readFileSync(keyfilePath), Passphrase: passPhrase, securityOptions:...
Mocha test runner has`--retries` flag that makes failed tests to retry. However successful try doesn't make chakram think that the test suite is successful. example, this test will pass only...