We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bfa3ae commit f3b0e04Copy full SHA for f3b0e04
tests/repl.test.js
@@ -14,7 +14,8 @@ describe("repl", () => {
14
const run = (input, output, done) => {
15
const repl = child_process.spawn("./bin/index.js", ["repl"], {
16
cwd: path.join(__dirname, ".."),
17
- stdio: "pipe"
+ stdio: "pipe",
18
+ env: { ...process.env, GUIDA_REGISTRY: "https://package.elm-lang.org" }
19
});
20
21
repl.stdout.on("data", (data) => {
0 commit comments