UNPKG

e2ed

Version:

E2E testing framework over Playwright

14 lines (13 loc) 509 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getIsTestIncludedInPack = void 0; const config_1 = require("../config"); /** * Get flag "is test included in pack" for filtering tests by the complete test options. * @internal */ const getIsTestIncludedInPack = (testStaticOptions) => { const { filterTestsIntoPack } = (0, config_1.getFullPackConfig)(); return filterTestsIntoPack(testStaticOptions); }; exports.getIsTestIncludedInPack = getIsTestIncludedInPack;