Revision 807c6a4e10231a8e9386bf7daf3da3498d1663fa authored by Paul Gschwendtner on 17 December 2021, 18:25:48 UTC, committed by Andrew Scott on 05 January 2022, 23:20:21 UTC
Updates the acceptance core tests to work with ES2015 devmode output.
There were two issues surfacing:

* The NodeJS test execution failed because Domino does not handle
  destructuring syntax properly. This is because `Node.children` is not
  an iterable.

* `forwardRef` does not work with ES2015 and TypeScript's decorator
  downlevel emit. This is a known limitation we work around in Angular
  applications by either compiling tests with the Angular compiler, or
  by running a custom decorator downlevel transform (like in the CLI).

PR Close #44505
1 parent 92806ff
Raw File
gitconfig
# The file is inert unless it's explicitly included into the local git config via:
#
# ```
# git config --add include.path '../.ng-dev/gitconfig'
# ```
#
# Calling that command will append the following into `.git/config` of the current git workspace
# (i.e. $GIT_DIR, typically `angular/.git/config`):
#
# ```
# [include]
#     path = ../.ng-dev/gitconfig
# ```
[commit]
  template = .gitmessage
back to top