alsatian-fluent-assertions
Version:
Fluent assertions extension to Alsatian xUnit framework.
13 lines • 564 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const spec_error_1 = require("./spec-error");
class NestedPropertiesMatchError extends spec_error_1.SpecError {
constructor(node, message, path, error) {
/* istanbul ignore next */
super(node, `Property at path '${path}' ${message}:` +
"\n" +
error.message, error["expected"], error["actual"], true);
}
}
exports.NestedPropertiesMatchError = NestedPropertiesMatchError;
//# sourceMappingURL=nested-properties-match-error.js.map