mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
8af7d3a50b
This executes the patches in the top-level scope of Node tests. PR Close #53443
6 lines
285 B
TypeScript
6 lines
285 B
TypeScript
export function setupNodeEnv(): void {
|
|
// Change default symbol prefix for testing to ensure no hard-coded references.
|
|
(global as any)['__Zone_symbol_prefix'] = '__zone_symbol_test__';
|
|
(global as any)['__zone_symbol_test__DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION'] = false;
|
|
}
|