web: Show position in line

This commit is contained in:
2025-11-12 15:09:18 -06:00
parent 22f1f9dae5
commit f53d704e74
7 changed files with 101 additions and 52 deletions

View File

@@ -26,10 +26,7 @@ function server_test_usage()
@test length(job_id) == 16
# Wait for jobs to finish
sleep(5)
while isbusy(server.processor)
sleep(0.1)
end
sleep(10)
# Verify the compressed file was saved correctly
job_dir = joinpath(Backend.basedir, "jobs", job_id)
@@ -52,6 +49,7 @@ function server_test_usage()
@test haskey(view_data, "solution")
@test view_data["log"] !== nothing
@test view_data["solution"] !== nothing
@test view_data["status"] == "completed"
# Clean up
rm(job_dir, recursive = true)