mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
tools: enable linter in test/fixtures/eval
PR-URL: https://github.com/nodejs/node/pull/57699 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
parent
9de01cc4d1
commit
633ba0079e
|
|
@ -53,6 +53,7 @@ export default [
|
|||
// We want to lint only a few specific fixtures folders
|
||||
'test/fixtures/*',
|
||||
'!test/fixtures/console',
|
||||
'!test/fixtures/eval',
|
||||
'!test/fixtures/v8',
|
||||
'!test/fixtures/vm',
|
||||
]),
|
||||
|
|
|
|||
2
test/fixtures/eval/eval_typescript.js
vendored
2
test/fixtures/eval/eval_typescript.js
vendored
|
|
@ -18,7 +18,7 @@ const queue = [
|
|||
for (const cmd of queue) {
|
||||
const args = ['--disable-warning=ExperimentalWarning', '-p', cmd];
|
||||
const result = spawnSync(process.execPath, args, {
|
||||
stdio: 'pipe'
|
||||
stdio: 'pipe',
|
||||
});
|
||||
process.stdout.write(result.stdout);
|
||||
process.stdout.write(result.stderr);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user