我正在尝试在我的项目中实现 API 测试,我正在使用 Dredd。现在我的一些响应参数返回“null”值,根据逻辑这是可以的。在我的 yml 文件中,我如何指定 null 可以是除正常预期值(例如字符串)之外的有效值。
cdeOutageUpdateType: {type: string}, txtDesc: {type: string},
上述参数中,cdeOutageUpdateType 为空即可。但我的 Dredd 测试因此而失败。
body: At '/19/cdeOutageType' Invalid type: null (expected string)