Skip to content

Commit

Permalink
Woops
Browse files Browse the repository at this point in the history
  • Loading branch information
pavpanchekha committed Feb 19, 2025
1 parent 2db0cfb commit 8768e8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/test-api.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function getFreePort() {
const PORT = await getFreePort();

console.log("Spawning server on port " + PORT)
const child = spawn('racket', ['-y', 'src/main.rkt', '--threads', '2', 'web', '--quiet', '--port', ""+PORT]);
const child = spawn('racket', ['-y', 'src/main.rkt', 'web', '--threads', '2', '--quiet', '--port', ""+PORT]);

child.stdout.on('data', (data) => {
console.log(""+data);
Expand Down

0 comments on commit 8768e8b

Please # to comment.