Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions report/schemas/result.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ properties:
stacktrace:
type: string
nullable: true
error_context:
type: string
nullable: true
description: >-
Free-form failure context captured by the reporter. For Playwright this is the content
of error-context.md, which may include rendered page content. Reporters may truncate
long values; Qase truncates at 262144 characters on upload.
thread:
type: string
nullable: true
Expand Down
5 changes: 5 additions & 0 deletions testops-api/v2/paths/results_bulk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,10 @@ post:
description: Forbidden
"404":
description: Not Found
"413":
description: |
Payload Too Large. Returned when the request contains more than 2000 results, or when the
combined length of `execution.error_context` across the batch exceeds 4194304 characters.
In both cases the whole batch is rejected — no results are created.
"422":
description: Unprocessable Entity
9 changes: 9 additions & 0 deletions testops-api/v2/schemas/ResultExecution.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ properties:
stacktrace:
type: string
nullable: true
error_context:
type: string
nullable: true
description: >-
Free-form failure context captured by the reporter. For Playwright this is the content of
error-context.md (test info, error details, page snapshot), so it may include rendered page
content. Stored verbatim so it can be copied as raw text. Values longer than 262144
characters are silently truncated by Qase and the request still succeeds. Write-only — not
returned by the result read endpoints.
thread:
type: string
nullable: true
Expand Down
Loading