run_frontend_performance.ps1 222 B

12345678910
  1. $ErrorActionPreference = "Stop"
  2. locust -f "$PSScriptRoot\locustfile_frontend.py" `
  3. --host "http://127.0.0.1:4301" `
  4. --headless `
  5. -u 30 `
  6. -r 5 `
  7. -t 3m `
  8. --html "$PSScriptRoot\frontend-performance-report.html"