UNPKG

@qaflag/core

Version:

Base requirements for the QA Flag library

18 lines 448 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TestResult = void 0; class TestResult { constructor(test, passes, actualValue) { this.test = test; this.passes = passes; this.actualValue = actualValue; } get fails() { return !this.passes; } get and() { return this.test.input; } } exports.TestResult = TestResult; //# sourceMappingURL=result.js.map