frisby icon indicating copy to clipboard operation
frisby copied to clipboard

Frisby is a REST API testing framework built on Jest that makes testing API endpoints easy, fast, and fun.

Results 30 frisby issues
Sort by recently updated
recently updated
newest added

I am using axios to make http requests, I have a form data to be sent which i am passing as shown below function addrequestData (token) { const form =...

Question

I'm using this method to pass it but I wonder if it's optimal enough?: ```javascript const joiOptions = { convert: false, presence: "required" }; frisby.timeout(2500) .post(baseUrl + '/auth/register' + urlOptions,...

Question

Hi there. 😸 `.expect('jsonTypes', '*', {})` does not allow an empty array. But API which returns array of objects usually returns `[]` even when the array has no object. So,...

I have a simple login frisby testcase. this is one of the examples, i am running this in jenkins, randomly on or the other test case fails with error below....

When trying to upload large files through the post method I get the following errors: Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL. This can be...

https://nvd.nist.gov/vuln/detail/CVE-2020-36604

@vlucas I think difference between npm package and Github source has become larger. Is it possible to update npm package ? Or is it possible to have someone in GitHub...

Hello My question is [here](https://stackoverflow.com/questions/75609442/unhandled-promise-rejection-typeerror-response-textconverted-is-not-a-function) but I kind of copy it below for the sake of readability. I use Jasmine (in Angular) to access the server with the following test:...

Needs Tests

If i set up the Joi assertions like in the readme with `require('joi');` type assertion does not work. If i use the the one coming with frisby `frisby.Joi` it work....