@plugjs/expect5
Version:
Unit Testing for the PlugJS Build System ========================================
43 lines (41 loc) • 1.68 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// expectation/expect.ts
var expect_exports = {};
__export(expect_exports, {
expect: () => expect
});
module.exports = __toCommonJS(expect_exports);
var import_async = require("./async.cjs");
var import_matchers = require("./matchers.cjs");
var expect = ((value, remarks) => {
return new import_async.AsyncExpectations(value, remarks);
});
for (const key of Object.getOwnPropertyNames(import_matchers.Matcher.prototype)) {
if (!key.startsWith("to")) continue;
const matcher = (...args) => new import_matchers.Matcher()[key](...args);
Object.defineProperty(matcher, "name", { value: key });
Object.defineProperty(expect, key, { value: matcher });
}
Object.defineProperty(expect, "not", { get: () => new import_matchers.Matcher().not });
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
expect
});
//# sourceMappingURL=expect.cjs.map