Uh oh!
There was an error while loading. Please reload this page.
test: clean up test-child-process-exec-cwd.js - #9231
Closed
jeenalee wants to merge 1 commit into
Closed
Conversation
jeenalee
commented
Oct 21, 2016
ContributorAuthor
cc @Trott |
cjihrig
reviewed
Oct 21, 2016
Contributor
There was a problem hiding this comment.
This would probably make more sense as assert.strictEqual(stdout.indexOf(dir), 0);
Trott
commented
Oct 21, 2016
Member
Nit: |
jeenalee
commented
Oct 22, 2016
ContributorAuthor
Review comments, including editing commit message, addressed. Thanks everyone! |
- Changed `assert.ok()` to `assert.strictEqual()`. - Changed `var` to `const` where possible.
test-child-process-exec-cwd.jstest-child-process-exec-cwd.jsTrott
commented
Oct 22, 2016
Member
lpinca
approved these changes
Oct 24, 2016
jasnell
approved these changes
Oct 24, 2016
jasnell
commented
Oct 25, 2016
Member
too much red in that last CI run.. trying again: https://ci.nodejs.org/job/node-test-pull-request/4667/ |
Trott pushed a commit
to Trott/io.js
that referenced
this pull request
Oct 26, 2016
- Changed `assert.ok()` to `assert.strictEqual()`. - Changed `var` to `const` where possible. PR-URL: nodejs#9231 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
Trott
commented
Oct 26, 2016
Member
Landed in 2d472a3 |
evanlucas pushed a commit
that referenced
this pull request
Nov 2, 2016
- Changed `assert.ok()` to `assert.strictEqual()`. - Changed `var` to `const` where possible. PR-URL: #9231 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
MylesBorins pushed a commit
that referenced
this pull request
Nov 18, 2016
- Changed `assert.ok()` to `assert.strictEqual()`. - Changed `var` to `const` where possible. PR-URL: #9231 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
MylesBorins pushed a commit
that referenced
this pull request
Nov 19, 2016
- Changed `assert.ok()` to `assert.strictEqual()`. - Changed `var` to `const` where possible. PR-URL: #9231 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
MylesBorins pushed a commit
that referenced
this pull request
Nov 22, 2016
- Changed `assert.ok()` to `assert.strictEqual()`. - Changed `var` to `const` where possible. PR-URL: #9231 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto 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.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Checklist
make -j8 test(UNIX), orvcbuild test nosign(Windows) passesAffected core subsystem(s)
test
Description of change
This patch provides minor fixes to
test-child-process-exec-cwd.js. Notably:==to===.vartoconstwhere possible.