summaryrefslogtreecommitdiff
path: root/tests/modules/scheduler/spinner.lua
blob: ee442163d17cb6dc546779b30ce2d246b3fbcfd7 (plain)
1
2
3
4
5
6
7
8
9
10
import("async.runjobs")

function main()
    printf("testing .. ")
    runjobs("test", function ()
        os.sleep(10000)
    end, {waiting_indicator = true})
    print("ok")
end