-
-
Notifications
You must be signed in to change notification settings - Fork 219
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
Drop support for Node 12 #497
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ import {fileURLToPath, pathToFileURL} from 'node:url'; | |
import test from 'ava'; | ||
import isRunning from 'is-running'; | ||
import getNode from 'get-node'; | ||
import semver from 'semver'; | ||
import {execa, execaSync} from '../index.js'; | ||
|
||
process.env.PATH = fileURLToPath(new URL('fixtures', import.meta.url)) + path.delimiter + process.env.PATH; | ||
|
@@ -167,9 +166,7 @@ if (process.platform !== 'win32') { | |
}); | ||
|
||
test('execa() rejects with correct error and doesn\'t throw if running non-executable with input', async t => { | ||
// On Node <12.6.0, `EACCESS` is emitted on `childProcess`. | ||
// On Node >=12.6.0, `EPIPE` is emitted on `childProcess.stdin`. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This comment was invalid: |
||
await t.throwsAsync(execa('non-executable.js', {input: 'Hey!'}), {message: /EACCES|EPIPE/}); | ||
await t.throwsAsync(execa('non-executable.js', {input: 'Hey!'}), {message: /EACCES/}); | ||
}); | ||
} | ||
|
||
|
@@ -207,21 +204,19 @@ test('can use `options.cwd` as a string', async t => { | |
t.is(path.toNamespacedPath(stdout), path.toNamespacedPath(cwd)); | ||
}); | ||
|
||
if (semver.satisfies(process.version, '^14.18.0 || >=16.4.0')) { | ||
test('localDir option can be a URL', async t => { | ||
const command = process.platform === 'win32' ? 'echo %PATH%' : 'echo $PATH'; | ||
const {stdout} = await execa(command, {shell: true, preferLocal: true, localDir: pathToFileURL('/test')}); | ||
const envPaths = stdout.split(path.delimiter); | ||
t.true(envPaths.some(envPath => envPath.endsWith('.bin'))); | ||
}); | ||
test('localDir option can be a URL', async t => { | ||
const command = process.platform === 'win32' ? 'echo %PATH%' : 'echo $PATH'; | ||
const {stdout} = await execa(command, {shell: true, preferLocal: true, localDir: pathToFileURL('/test')}); | ||
const envPaths = stdout.split(path.delimiter); | ||
t.true(envPaths.some(envPath => envPath.endsWith('.bin'))); | ||
}); | ||
|
||
test('can use `options.cwd` as a URL', async t => { | ||
const cwd = '/'; | ||
const cwdUrl = pathToFileURL(cwd); | ||
const {stdout} = await execa('node', ['-p', 'process.cwd()'], {cwd: cwdUrl}); | ||
t.is(path.toNamespacedPath(stdout), path.toNamespacedPath(cwd)); | ||
}); | ||
} | ||
test('can use `options.cwd` as a URL', async t => { | ||
const cwd = '/'; | ||
const cwdUrl = pathToFileURL(cwd); | ||
const {stdout} = await execa('node', ['-p', 'process.cwd()'], {cwd: cwdUrl}); | ||
t.is(path.toNamespacedPath(stdout), path.toNamespacedPath(cwd)); | ||
}); | ||
|
||
test('can use `options.shell: true`', async t => { | ||
const {stdout} = await execa('node test/fixtures/noop.js foo', {shell: true}); | ||
|
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.
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.
I do not see how a top-level await could be used in this instance, so I just removed the comment.