File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22export const QA_CHILD_STDOUT_MAX_BYTES = 1024 * 1024 ;
33export const QA_CHILD_STDERR_TAIL_BYTES = 64 * 1024 ;
44
5- export type QaChildOutputCapture = {
5+ type QaChildOutputCapture = {
66 chunks : Buffer [ ] ;
77 bytes : number ;
88 exceeded : boolean ;
99 maxBytes : number ;
1010} ;
1111
12- export type QaChildOutputTail = {
12+ type QaChildOutputTail = {
1313 buffer : Buffer ;
1414 maxBytes : number ;
1515 truncated : boolean ;
Original file line number Diff line number Diff line change 11// Qa Lab plugin module defines shared suite errors.
2- export type QaSuiteArtifactErrorCode =
2+ type QaSuiteArtifactErrorCode =
33 | "evidence_missing"
44 | "report_missing"
55 | "summary_missing"
@@ -18,7 +18,7 @@ export class QaSuiteArtifactError extends Error {
1818 }
1919}
2020
21- export type QaSuiteInfraErrorCode =
21+ type QaSuiteInfraErrorCode =
2222 | "agent_wait_failed"
2323 | "gateway_startup_unhealthy"
2424 | "gateway_ready_timeout"
You can’t perform that action at this time.
0 commit comments