Running Assertions
expect(handler, [...args])
expect('status', statusCode)
it('should be a teapot', function () {
return frisby.get('https://httpbin.org/status/418')
.expect('status', 418);
});expect('header', key [, value])
expect('json' [, path], data)
expect('jsonTypes' [, path], data)
expectNot(handler, [...args])
Last updated