Switching test loading from Artillery to home-grown test

This commit is contained in:
David Négrier 2020-09-18 17:01:45 +02:00
parent 28dc3a2c84
commit 32f92d5c45
7 changed files with 771 additions and 227 deletions

View file

@ -0,0 +1,15 @@
#!/bin/bash
yarn run start &
pid1=$!
yarn run start &
pid2=$!
yarn run start &
pid3=$!
yarn run start &
pid4=$!
wait $pid1
wait $pid2
wait $pid3
wait $pid4