earljs
Version:
Ergonomic, modern and type-safe assertion library
13 lines (12 loc) • 452 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getTestRunnerIntegration = exports.setTestRunnerIntegration = void 0;
let testRunnerCtx;
function setTestRunnerIntegration(_testRunnerCtx) {
testRunnerCtx = _testRunnerCtx;
}
exports.setTestRunnerIntegration = setTestRunnerIntegration;
function getTestRunnerIntegration() {
return testRunnerCtx;
}
exports.getTestRunnerIntegration = getTestRunnerIntegration;
;