-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add test for the repl (would have caught gc bug fixed in previous com…
…mit)
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { spawn } from "first-base"; | ||
import { binaryPath } from "../test-helpers"; | ||
import { sleep } from "a-mimir"; | ||
|
||
describe("repl", () => { | ||
test("basic run", async () => { | ||
const run = spawn(binaryPath); | ||
await run.outputContains("> "); | ||
run.write("2 + 2\n"); | ||
await run.outputContains("4"); | ||
// TODO: it's annoying that you have to hit Ctrl+C more than once | ||
{ | ||
run.kill("SIGINT"); | ||
await sleep.async(10); | ||
run.kill("SIGINT"); | ||
} | ||
await run.completion; | ||
expect(run.result).toMatchInlineSnapshot(` | ||
{ | ||
"code": 0, | ||
"error": false, | ||
"stderr": "", | ||
"stdout": "> 2 + 2 | ||
4 | ||
> | ||
(Press Ctrl-C again to quit) | ||
> | ||
", | ||
} | ||
`); | ||
}); | ||
}); |