FRONTEND
Remix v0.3.0
RESUMEN
Minor Changes - Add `FakeTimers#advanceAsync(ms)` to `t.useFakeTimers()`. Like `advance`, it walks pending timers in time order and fires them, but yields to microtasks between each firing so promise continuations (and any timers they schedule) can settle before the next firing is processed. Us
Descripción Detallada
Minor Changes - Add `FakeTimers#advanceAsync(ms)` to `t.useFakeTimers()`. Like `advance`, it walks pending timers in time order and fires them, but yields to microtasks between each firing so promise continuations (and any timers they schedule) can settle before the next firing is processed. Use it when a fake-timer-driven callback awaits work that itself depends on the fake clock. - Accept arrays for `glob.{test,browser,e2e,exclude}`, `project`, `type`, and `coverage.{include,exclude}` config fields - The matching CLI flags (`--glob.test`, `--project`, `--type`, etc.) can be repeated - Positional arguments after `remix-test` now collect into `glob.test`, so `remix-test "src/*/.test.ts" "tests/*/.test.tsx"` works. - `type`'s default is now `["server", "browser", "e2e"]` instead of `"server,browser,e2e"`. - Include the total number of test files/suites in the end-of-run summary for all test reporters Patch Changes - Load Playwright only when browser or E2E tests run, allowing test help and server-only test runs without Playwright installed. Browser and E2E test runs now report a clearer error when Playwright is missing. - Run server and E2E test files in forked child processes by default, add `pool: 'threads'`/`--pool threads` to preserve the previous worker-thread behavior, and clean up leaked test worker resources after results are reported.
Remix v0.3.0 introduce cambios menores y rompe compatibilidad con versiones anteriores.
- Se añade `FakeTimers#advanceAsync(ms)` a `t.useFakeTimers()` para manejar temporizadores con promesas.
- Se aceptan arreglos en varios campos de configuración como `glob.test` y `type`.
- Se incluye el total de archivos/suites de prueba en el resumen final de todas las pruebas.
- Playwright solo se carga cuando se ejecutan pruebas de navegador o E2E, mejorando la gestión de errores.
A quién le importa
Solo si usas temporizadores falsos o configuraciones avanzadas en Remix.
Generado por IA · puede contener errores
Releases Relacionados
FRONTEND
Remix v0.4.8
### Patch Changes - Bumped `@remix-run/*` dependencies: - [`fetch-router@0.18.2`](https://github.com/remix-run/remix/releases/tag/fetch-router@0.18.2)
FRONTEND
Remix v0.1.7
### Patch Changes - Bumped `@remix-run/*` dependencies: - [`fetch-router@0.18.2`](https://github.com/remix-run/remix/releases/tag/fetch-router@0.18.2)
FRONTEND