@averagehelper/corde
Version:
A simple library for Discord bot tests. (Republished fork to demonstrate a bugfix)
16 lines (15 loc) • 529 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TestReport = void 0;
class TestReport {
constructor(model) {
this.commandName = model.commandName;
this.expectation = model.expectation;
this.output = model.output;
this.isNot = model.isNot;
this.showExpectAndOutputValue = model.showExpectAndOutputValue;
this.customReturnMessage = model.customReturnMessage;
this.hasPassed = model.hasPassed;
}
}
exports.TestReport = TestReport;