()
| 139 | } |
| 140 | |
| 141 | export const runDevTestPerfConnection = async (): Promise<number> => { |
| 142 | return runWithSpinner( |
| 143 | 'Running connection rate limit performance test...', |
| 144 | 'Connection rate limit test completed', |
| 145 | 'Connection rate limit test failed', |
| 146 | () => runCommand('k6', ['run', 'test/performance/connection-limiting-k6.ts']), |
| 147 | ) |
| 148 | } |
| 149 | |
| 150 | export const runDevTestPerfMessage = async (): Promise<number> => { |
| 151 | return runWithSpinner( |
no test coverage detected