stepci
stepci copied to clipboard
Automated API Testing and Quality Assurance
Should instead merge the variables from CLI instead of passing them to separate config option
- [ ] Add messages length check - [ ] Add messages (byte) size check - [ ] Improve existing checks code - [ ] Implement captures - [ ]...
### What happened? I have this test: ```yaml tests: - name: myprocedure http: url: ${{env.url}} headers: x-api-key: ${{secrets.apikey}} trpc: mutation: subrouter.myprocedure: some: 'asdf' arguments: 11234 check: status: /^20/ ``` Running...
Would be cool if Step CI would support HAR format - [ ] Generate Workflow from a HAR file - [ ] Export test result as a HAR file
Relevant code: ```ts request.once('socket', s => { s.once('close', () => { requestSize = request.socket?.bytesWritten responseSize = request.socket?.bytesRead }) }) ```