mirror of
https://github.com/vlang/v.git
synced 2025-09-08 06:41:58 -04:00
tests: reduce chances of unrelated false positives due to network errors, for running code in vlib/v/tests/skip_unused/
This commit is contained in:
parent
426bcd6972
commit
9109b23c76
@ -1,3 +1 @@
|
||||
[Vweb] Running app on http://localhost:38090/
|
||||
[Vweb] We have 1 workers
|
||||
done
|
||||
|
@ -1,3 +1 @@
|
||||
[Vweb] Running app on http://localhost:38090/
|
||||
[Vweb] We have 1 workers
|
||||
done
|
||||
|
@ -11,8 +11,8 @@ fn main() {
|
||||
println('done')
|
||||
exit(0)
|
||||
}()
|
||||
time.sleep(10 * time.second)
|
||||
vweb.run_at(&App{}, port: 38090, nr_workers: 1)!
|
||||
// vweb.run(&App{}, 38091)
|
||||
}
|
||||
|
||||
@['/']
|
||||
|
@ -1,2 +1 @@
|
||||
[Vweb] Running app on http://localhost:38090/
|
||||
done
|
||||
|
@ -1,2 +1 @@
|
||||
[Vweb] Running app on http://localhost:38090/
|
||||
done
|
||||
|
@ -13,6 +13,7 @@ fn main() {
|
||||
println('done')
|
||||
exit(0)
|
||||
}()
|
||||
time.sleep(10 * time.second)
|
||||
mut app := &App{}
|
||||
vweb.run_at[App, Context](mut app, port: 38090)!
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user