★ wanayoo — archive 1999 https://github.com/nodejs/node/pull/24542Nouvelle recherche | Portail wanayoo
Skip to content
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

test:favor arrow function in callback #24542

Closed
wants to merge 2 commits into from

Conversation

Projects
None yet
6 participants
@kotAPI
Copy link
Contributor

kotAPI commented Nov 21, 2018

Checklist
  • make -j4 test (UNIX), or vcbuild test (Windows) passes
  • tests and/or benchmarks are included
  • documentation is changed or added
  • commit message follows commit guidelines
@@ -23,7 +23,7 @@
const common = require('../common');
const zlib = require('zlib');

zlib.gzip('hello', common.mustCall(function(err, out) {
zlib.gzip('hello', common.mustCall((err, out)=> {

This comment has been minimized.

Copy link
@sreepurnajasti

sreepurnajasti Nov 21, 2018

Contributor

Nit: space is required before arrow to pass the lint test
https://travis-ci.com/nodejs/node/jobs/159977196

This comment has been minimized.

Copy link
@kotAPI

kotAPI Nov 21, 2018

Author Contributor

I didn't know that, I've pushed again with the required changes, thanks!

@cjihrig
Copy link
Contributor

cjihrig left a comment

LGTM once it passes linting.

@kotAPI kotAPI force-pushed the kotAPI:master branch from 7f9bc37 to 389c79a Nov 21, 2018

@Trott

This comment has been minimized.

@kotAPI

This comment has been minimized.

Copy link
Contributor Author

kotAPI commented Nov 21, 2018

@Trott @cjihrig @sreepurnajasti any tips on how to make the remaining tests pass?

@cjihrig

This comment has been minimized.

Copy link
Contributor

cjihrig commented Nov 21, 2018

It should just be a matter of running it again.

Resume CI: https://ci.nodejs.org/job/node-test-pull-request/18856/

@Trott Trott added the author ready label Nov 22, 2018

@kotAPI

This comment has been minimized.

Copy link
Contributor Author

kotAPI commented Nov 22, 2018

Ahh, thanks @cjihrig :D

@gireeshpunathil

This comment has been minimized.

Copy link
Member

gireeshpunathil commented Nov 22, 2018

fast-track? please 👍

@Trott Trott added the fast-track label Nov 22, 2018

Trott added a commit to Trott/io.js that referenced this pull request Nov 22, 2018

test: favor arrow function in callback
PR-URL: nodejs#24542
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
@Trott

This comment has been minimized.

Copy link
Member

Trott commented Nov 22, 2018

Landed in 21522cb.

Thanks for the contribution! 🎉

(If you're interested in other possible contributions to Node.js but don't have a good idea of where to start looking, some ideas are posted at https://www.nodetodo.org/next-steps/.)

@Trott Trott closed this Nov 22, 2018

targos added a commit that referenced this pull request Nov 24, 2018

test: favor arrow function in callback
PR-URL: #24542
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>

rvagg added a commit that referenced this pull request Nov 28, 2018

test: favor arrow function in callback
PR-URL: #24542
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>

@BridgeAR BridgeAR referenced this pull request Dec 5, 2018

Merged

v11.4.0 proposal #24854

4 of 4 tasks complete

codebytere added a commit that referenced this pull request Jan 13, 2019

test: favor arrow function in callback
PR-URL: #24542
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>

refack added a commit to refack/node that referenced this pull request Jan 14, 2019

test: favor arrow function in callback
PR-URL: nodejs#24542
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>

@codebytere codebytere referenced this pull request Jan 15, 2019

Merged

v10.15.1 proposal #25346

MylesBorins added a commit that referenced this pull request Jan 29, 2019

test: favor arrow function in callback
PR-URL: #24542
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>

codebytere added a commit that referenced this pull request Jan 29, 2019

test: favor arrow function in callback
PR-URL: #24542
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>

codebytere added a commit that referenced this pull request Jan 29, 2019

test: favor arrow function in callback
PR-URL: #24542
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>

codebytere added a commit that referenced this pull request Jan 29, 2019

test: favor arrow function in callback
PR-URL: #24542
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.