You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* Setup opcional para tests. Si el runner lo soporta (p. ej., bun test con --preload),
|
|
* fija el modo de gating por defecto a 'off' para no afectar suites existentes.
|
|
*/
|
|
if (!process.env.GROUP_GATING_MODE) {
|
|
process.env.GROUP_GATING_MODE = 'off';
|
|
}
|