mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
As an alternative to monkey patching vitest, this change adds a method that could be used
for manually running functions inside a shared proxy zone. If used inocrrectly,
this would mean that
the `fakeAsync` closure may not capture all timers and microtasks if it
invokes things created in a zone that was already forked (e.g. creating
a component in a beforeEach:
|
||
|---|---|---|
| .. | ||
| async-test.ts | ||
| fake-async-test.ts | ||
| long-stack-trace.ts | ||
| proxy.ts | ||
| rollup-long-stack-trace.ts | ||
| rollup-proxy.ts | ||
| rollup-sync-test.ts | ||
| rollup-task-tracking.ts | ||
| rollup-wtf.ts | ||
| sync-test.ts | ||
| task-tracking.ts | ||
| wtf.ts | ||