Introduction

Frisby.js - The Easiest REST API Testing Framework Out There
A Simple Example
const frisby = require('frisby');
it ('should return a status of 200', function () {
return frisby
.get('http://api.example.com')
.expect('status', 200);
});Checking a JSON Response Body
Gain Confidence In Your API
Last updated