eql() method in Chai.js Case sensitive?
eql() method in Chai.js Case sensitive?
I have not written postman scripts before, little confused on what the eql() does, does it compare the values ? Is it case sensitive ?
pm.expect(responseData.results[globals.randomNumber].created_by).to.eql("mwasserman");
This particular line fails if the returned value is in upper case. How can I make it ignore the cases ? Thanks
responseData.results[globals.randomNumber].created_by.toLowerCase()
Is that randomNumber a name? It's taken from the Chaijs API chaijs.com/api/bdd/#method_equal
– Danny Dainton
Sep 3 at 10:55
1 Answer
1
the postman tests uses the Chai assertion library (http://www.chaijs.com/api/bdd/) to make the assertion. And as you can see in the documentation it compares the objects in a deeply way, so yes if your strings are different in case it will fail:
Asserts that the target is deeply equal to the given obj. See the
deep-eql project page for info on the deep equality algorithm:
https://github.com/chaijs/deep-eql.
Here is the documentation of eql method: http://www.chaijs.com/api/bdd/#method_eql.
I think that a best solution in this case would be to convert both string either to upper case or lower case with the javascript methods:
"string".toLowerCase()
"string".toUpperCase()
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
responseData.results[globals.randomNumber].created_by.toLowerCase()
? Even if its case-sensitive, you can normalize it by converting both strings to downcase.– 31piy
Sep 3 at 10:09