我正在寻找一个简单的 API 来测试其余 API。我希望能够保持 mocha 和/或 jasmine 断言结构,同时链接 API 数据、动词等。
api( '/maker' )
.put(
return {
name: 'Sample 1',
type: 'cheese',
country: 'United States'
}
)
.failed()
.succussed().
.has(
return {
assert(1, 1)
}
);