-
Notifications
You must be signed in to change notification settings - Fork 6.8k
build: update to nodejs v16 and update rules_nodejs to v4 stable #23485
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
Conversation
07d6e8f
to
e814b09
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
9726445
to
b21a0ae
Compare
Updates NodeJS to v16 and updates rules_nodejs to v4 stable. This allows developers running tests and building with ARM64 darwin. i.e. Apple Silicon/M1 devices.
b21a0ae
to
4523913
Compare
await getElement(otherElement).getLocation().then((location: Point) => { | ||
expectLocation(getElement(element), location); | ||
await getElement(otherElement).getLocation().then(async (location: Point) => { | ||
await expectLocation(getElement(element), location); |
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.
For some reason there was a missing await here that caused e2e tests to fail. Not sure if it was flaky because it happened constantly on this PR, but the missing await
definitely is reasonable for flakiness..
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
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. |
Updates NodeJS to v16 and updates rules_nodejs to v4 stable. This
allows developers running tests and building with ARM64 darwin. i.e.
Apple Silicon/M1 devices.