All run tests are passing

This commit is contained in:
Radon Rosborough 2020-07-30 16:07:20 -06:00
parent 821be937ce
commit d14df69cf6
2 changed files with 3 additions and 3 deletions

View File

@ -1443,7 +1443,7 @@ main = do
repl: "node /opt/qalb/repl.js",
input: "(ضرب ١٢٣ ٢٣٤)",
main: "main.qalb",
hello: "قو",
hello: "مرحبا يا عالم",
run: "node /opt/qalb/repl.js main.qalb",
template: `(قول "مرحبا يا عالم")
`,

View File

@ -10,8 +10,8 @@ import { v4 as getUUID } from "uuid";
import * as api from "./api";
import { LangConfig, langs } from "./langs";
const TIMEOUT_MS = 10000;
const CONCURRENCY = 16;
const TIMEOUT_MS = 16000;
const CONCURRENCY = 24;
function findPosition(str: string, idx: number) {
const lines = str.substring(0, idx).split("\n");