@gatling.io/core
Version:
Gatling JS is a JavaScript/TypeScript interface for the [Gatling load testing tool](https://gatling.io/).
8 lines (7 loc) • 396 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.groupImpl = void 0;
const session_1 = require("../session");
const on_1 = require("./on");
const groupImpl = (jvmGroups, wrap) => (group) => (0, on_1.wrapOn)(typeof group === "function" ? jvmGroups.group((0, session_1.underlyingSessionTo)(group)) : jvmGroups.group(group), wrap);
exports.groupImpl = groupImpl;