-
Notifications
You must be signed in to change notification settings - Fork 6.8k
build: run example harness unit tests and fix errors #21759
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: run example harness unit tests and fix errors #21759
Conversation
5ab4051
to
a9d3159
Compare
deps = [ | ||
"//test:angular_test_init", | ||
] + deps, | ||
deps = deps if exclude_init_script else ["//test:angular_test_init"] + deps, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is necessary so that the test setup is identical between the local environment and Stackblitz.
* Makes it so we're able to run the test harness example tests to make sure they pass. * Fixes several example unit tests that didn't pass. * Reduces the boilerplate in the example tests. Fixes angular#21758.
a9d3159
to
a5125c7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks for the fix. I think I tried most of the examples manually in stackblitz when I sent out the PRs initially but must've missed some. Its much better to be able to actually run them.
* Makes it so we're able to run the test harness example tests to make sure they pass. * Fixes several example unit tests that didn't pass. * Reduces the boilerplate in the example tests. Fixes angular#21758.
* Makes it so we're able to run the test harness example tests to make sure they pass. * Fixes several example unit tests that didn't pass. * Reduces the boilerplate in the example tests. Fixes angular#21758.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Fixes #21758.