UNPKG

@opra/testing

Version:
15 lines (14 loc) 343 B
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; } }