Skip to content

Commit 5ea4d40

Browse files
committed
Fix #17: Fail run in NodeJSEnv if ESModule fails
1 parent daa52a0 commit 5ea4d40

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

nodejs-env/src/main/scala/org/scalajs/jsenv/nodejs/NodeJSEnv.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ object NodeJSEnv {
146146
* `import()` cannot be used from the standard input).
147147
*/
148148
val importChain = input.foldLeft("Promise.resolve()") { (prev, item) =>
149-
s"$prev.\n then(${execInputExpr(item)})"
149+
s"$prev.\n then(() => ${execInputExpr(item)})"
150150
}
151151
val importerFileContent = {
152152
s"""

nodejs-env/src/test/scala/org/scalajs/jsenv/nodejs/NodeJSSuite.scala

-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,5 @@ import org.junit.runner.RunWith
1919
@RunWith(classOf[JSEnvSuiteRunner])
2020
class NodeJSSuite extends JSEnvSuite(
2121
JSEnvSuiteConfig(new NodeJSEnv)
22-
.withSupportsESModules(false) // #17
2322
.withExitJSStatement("process.exit(0);")
2423
)

0 commit comments

Comments
 (0)