Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign uptest: refactor test-child-process-env to use arrow functions #24482
Conversation
nodejs-github-bot
added
the
test
label
Nov 19, 2018
gireeshpunathil
approved these changes
Nov 19, 2018
gireeshpunathil
added
the
code-and-learn
label
Nov 19, 2018
This comment has been minimized.
This comment has been minimized.
addaleax
approved these changes
Nov 19, 2018
jasnell
approved these changes
Nov 19, 2018
thefourtheye
approved these changes
Nov 20, 2018
BridgeAR
approved these changes
Nov 20, 2018
This comment has been minimized.
This comment has been minimized.
|
@thefourtheye The build failed, seemingly because of the last change. How do I go about fixing it? Undoing the |
cjihrig
approved these changes
Nov 20, 2018
Trott
reviewed
Nov 20, 2018
|
Please remove the use of |
sagirk
added some commits
Nov 19, 2018
sagirk
force-pushed the
sagirk:refactor/test-child-process-env
branch
from
a70411b
to
dc4bdab
Nov 21, 2018
sagirk
referenced this pull request
Nov 21, 2018
Closed
test: refactor test-cluster-send-deadlock to use arrow functions #24479
This comment has been minimized.
This comment has been minimized.
|
@Trott Done. Build passed. PTAL. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
windows-fanned test unrelated:
|
This comment has been minimized.
This comment has been minimized.
|
so all is good, just waiting for @Trott to re-review and dismiss the change request. |
Trott
dismissed
their
stale review
Nov 26, 2018
requested changes applied
This comment has been minimized.
This comment has been minimized.
|
Resume Build CI: https://ci.nodejs.org/job/node-test-pull-request/18989/ |
This comment has been minimized.
This comment has been minimized.
|
landed as 484ad3b |
gireeshpunathil
closed this
Nov 28, 2018
gireeshpunathil
added a commit
that referenced
this pull request
Nov 28, 2018
targos
added a commit
that referenced
this pull request
Nov 28, 2018
sagirk
deleted the
sagirk:refactor/test-child-process-env
branch
Nov 30, 2018
This was referenced Dec 7, 2018
This was referenced Dec 7, 2018
refack
added a commit
to refack/node
that referenced
this pull request
Jan 14, 2019
BethGriggs
added a commit
that referenced
this pull request
Feb 12, 2019
BethGriggs
added
the
land-on-v10.x
label
Feb 12, 2019
rvagg
added a commit
that referenced
this pull request
Feb 28, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.

sagirk commentedNov 19, 2018
•
edited
In
test/parallel/test-child-process-env.js, callbacks useanonymous closure functions. It is safe to replace them with arrow
functions since these callbacks don't contain references to
this,superorarguments. This results in shorter functions.Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes