import '../expect-extend/index.js';
import { expect } from 'expect';
export class ApiExpectBase {
constructor(response, isNot) {
this.response = response;
this.isNot = isNot;
}
_expect(expected) {
const out = expect(expected);
if (this.isNot)
return out.not;
return out;
}
}