Skip to content

Commit

Permalink
Add tests for options to babel-node (#9510)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Feb 14, 2019
1 parent 85ea5b0 commit 2fb1f9a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"args": ["--inspect", "--eval", "console.log('foo');"],
"stderr": "Debugger listening on",
"stderrContains": true,
"stdout": "foo"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"args": ["--nolazy", "--eval", "console.log('foo')"],
"stdout": "foo"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"args": ["-gc", "--eval", "console.log(typeof global.gc)"],
"stdout": "function"
}

0 comments on commit 2fb1f9a

Please sign in to comment.