ui-omakase-framework
Version:
A comprehensive E2E testing framework library with pre-built Cucumber step definitions and utilities for web automation testing
16 lines (15 loc) • 459 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.stringIsOfOptions = void 0;
const stringLevelIsT = (string, options) => {
return options.includes(string);
};
const stringIsOfOptions = (stringLevel, options) => {
if (stringLevelIsT(stringLevel, options)) {
return stringLevel;
}
throw Error(`🧨 String '${stringLevel}' needs to be one of ${options} 🧨`);
};
exports.stringIsOfOptions = stringIsOfOptions;
;